Write a program to print your name 10 ten times.
Answers
Answered by
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
Biology,
7 hours ago
Computer Science,
7 hours ago
CBSE BOARD X,
7 hours ago
English,
13 hours ago
Computer Science,
13 hours ago
Math,
8 months ago
English,
8 months ago