Write a prigram to display "the exclr school " 10 times
Answers
Answered by
1
Answer: Java Program
public class test{
public static void main(String []arr){
for (int i=0; i<10 ; i++) { System.out.println("the exclr school ");}
}
}
Similar questions