Computer Science, asked by shubhi1980, 13 hours ago

Write a program to print your name 10 ten times.

Answers

Answered by tarunntech2006
0

Answer:

package com.mkyong.samples;

public class JavaSample1 {

  public static void main(String[] args) {

       for (int i = 0; i < 10; i++) {

           System.out.println("Java ");

       }

   }

}

Explanation:

i have used java. for loop

Similar questions