Computer Science, asked by Thunder11, 1 year ago

write a program to print your name 20 times

Answers

Answered by anuj
3
String name="YOUR NAME";
for (int i=1;i<=20;i++)
{
      System.out.println(name);
}

Similar questions