+ 1
Java problem 😤
Hi new in this business so be soft whit me I have an output problem help me please https://code.sololearn.com/cYrnoRhUeMy9/?ref=app
6 Réponses
+ 1
change system.out.println
to
System.out.println
+ 4
ERROR::::
..\Playground\:7: error: package system does not exist
system.out.println(z);
^
1 error
^Per the error, it's an issue with that line of code. Your problem is that you didn't capitalize 'System' namespace, so it cannot find it. Everything is case-sensitive.
CHANGE TO:
System.out.println(z);
+ 2
@Nikhil
Yes, that is correct. I simply misspoke. If I recall correctly, Java doesn't even use namespaces, but packages instead.
+ 1
"S" ystem.out.println(z);
+ 1
Thank you all very help me gd
0
Fata1 Err0r System is a class not a namespace.