Задача: 7. Repeat String
Здравейте колеги, нещо се замотах с тази задача, може ли помощ?
Условие:
Write a method that receives a string and a repeat count n (integer). The method should return a new string (the old one repeated n times)
Example
Input |
Output |
abc 3 |
abcabcabc |
String 2 |
StringString |
Hints
- Firstly read the string and the repeat count n
- Then create the method and pass it the variables
- In the main method, print the result
https://pastebin.com/fVXywAhw
Благодаря ви!
Видях решението, но Judge-a се сърди, или аз нещо бъркам и не разбирам..., не знам.
https://pastebin.com/rVQGYtzv
Четеш входните данни грешно. Първо е стринга, после числото.
Мерси, така е!