0
How to compile a program using command prompt in Windows 10 after installing jdk and setting the path?
First I downloaded the jdk and then set the path but I am unable to run a java program using command prompt.During compilation of java program an error message "can not find symbol and package does not exist" is shown on the command prompt.please help me how to avoid this error?
4 ответов
0
It usually means you are referring to a variable that doesn't exist.
Show us your code if possible
0
https://code.sololearn.com/chg4R9NussYq/?ref=app
Can I get your mail id?
0
It works on my end!
1. Open notepad, name the file Got.java
2. Type your code in (public class Got)
3. Run the command prompt (Windows key + R, type cmd press enter)
4. Find the file, I had mine on desktop so first I did C:\Users\(yourname)> cd desktop
5. javac Got.java
6. java Got
Remember to use JAVAC and .java to compile
Use only java Got when running
0
I did that but It doesn't work it always saying can not find symbol.