+ 1
I am stuck in what problem i made here
I am a beginner just tryin to get past the first round LOOL I write this code class Myclass { public static void main(String[ ] args) { System.out.println("Hello world im learning"); } } And receive this error ..\Playground\:4: error: cannot find symbol System.out.print1n("Hello world im learning"); ^ symbol: method print1n(String) location: variable out of type PrintStream 1 error
2 Answers
+ 11
no it's absolutely fine
class Myclass {
public static void main(String[ ] args) {
System.out.println("Hello world im learning");
}
}
Output:
Hello world im learning
u must have written System.out.print1n() that time instead of System.out.println()
+ 6
Works for me:
https://code.sololearn.com/czKksvkcClLs/?ref=app