I read a couple of differents hints, from others questions, but still can't understand...
package com.codegym.task.task06.task0611;
/*
StringHelper class
*/
public class StringHelper {
public static String multiply(String s) {
String result = "";
//write your code here
for(int i = 0; i < 5; i++){
result= result + s;
}
return result;
}
public static String multiply(String s, int count) {
String result = "";
//write your code here
for (int i = 0; i < count;i++){
}
return result;
}
public static void main(String[] args) {
System.out.println(multiply("Bob"));
}
}