Computer Science, asked by ashwarsingh024, 3 months ago

write a program in java to print your name 10 times
all step please ​

Answers

Answered by vkrandev
0

Answer:

just write

print (YOUR NAME)

and copy the same 10 times

hope it helps

Answered by TheUntrustworthy
0

Java program to print your name 10 times:

class Name

{

public static void main (string args [])

{

int c=0;

while (c<10)

{

System.out.println ("Jalaj");

c++

}

}

}

Similar questions