- 1
Why I'm getting error what is wrong in my code plz anyone correct it
public class main { public static void main(String[] args) { int i=0; while(i<100){ system.out.println(i); i += 1; } } }
3 Answers
+ 14
S should be uppercase in System
System.out.println(i);
+ 4
System.out.println(i);
+ 4
Thank u so much