Find the error | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Find the error

public class JavaTutorial { public static void main(string []args){ //TODO Auto-generated method stub int x=1; while(x<=4){ system. out.println(x); x++; } } }

15th Jul 2021, 4:47 AM
Vedika
Vedika - avatar
4 Antworten
+ 4
"string" should be "String" "system" should be "System" Why? (please revise the Java basic course again) public class JavaTutorial { public static void main(String []args){ //TODO Auto-generated method stub int x=1; while(x<=4){ System.out.println(x); x++; } } }
15th Jul 2021, 4:54 AM
Rohit
+ 3
Thanks
15th Jul 2021, 4:56 AM
Vedika
Vedika - avatar
+ 3
Yeva System and String are class so class name should be start with Capital letter. out is a object of System class and println is a method in System class and we call method using object so here System - class //should start with Capital letter out - object //should start with small letter println - method //should start with small letter
15th Jul 2021, 5:41 AM
A͢J
A͢J - avatar
+ 1
Please help
15th Jul 2021, 4:53 AM
Vedika
Vedika - avatar