You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
432 B
Java

Repeat a char for the specified number of times
public class Test1
{
public static void main(String args[])
{
String ht = repeat('X',7);
System.out.println(ht);
}
public static String repeat(char c,int i)
{
String tst = "";
for(int j = 0; j < i; j++)
{
tst = tst+c;
}
return tst;
}
}