0
The simple code is not working
i am writing the sim0le code in notepad++ but when i write system.out.printin(" hello world "); the comand line gives the error .. exampleprog.java connot find symbol
12 odpowiedzi
+ 1
static void
you have a extra v between them
+ 1
notepad++ is ok, but I suggest Eclipse. it's free and awesome. To test things quickly on your phone, I use "online console compiler" .. Some things to consider
0
capital S.. System.out.println()
0
also, not printin... println it's an L
0
i wrote System.out.PrintIn("hello") but still not working
0
System.out.println("Hello World");
0
small P
0
still not working .. what can i do
is it because i am using java 1.8.0-121.b13 version??
0
what does the error say
0
Your putting the code in the main method I assume? copy and paste the entire thing
0
it says .. connot find symbol System.out.printIn();
0
the exact code is
public class exampleprog{
public staticvvoid main (String [] args){
System.out.printIn("hello");
}
}