id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

string_repeat


Given a String and a 'repeat' integer, return a String that is 'repeat' number of copies of the given String.


string_repeat("Hello", 2) → "HelloHello"
string_repeat("Hi", 3) → "HiHiHi"
string_repeat("lol", 5) → "lollollollollol"

...Save, Compile, Run (ctrl-enter)

public String string_repeat(String str, int repeat) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Post-solution available

Copyright Nick Parlante 2017 - privacy