+ 1
What is the mistake in this program.?
I am writing a program on the series 1 12 Like this It is showing error and asking for identifier. Please help me. the program is given below đ public class Program { public static void main(String[] args) { for(int i=1; i<=10; i++) { if (i==2) break; } } System .out.print(i); }
5 Answers