java how can i loop the string until it reaches its length(strings) -
string = "hello"; Int length = 10; // Length is variable I do not know how this loop 10 times this string "Hello" shows the string index bound exception depending on your character
Requried Output: Hellohelloh
string result = ""; For (int i = 0; i
Comments
Post a Comment