write a program in java to print your name 10 times
all step please
Answers
Answered by
0
Answer:
just write
print (YOUR NAME)
and copy the same 10 times
hope it helps
Answered by
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