+ 1
How should i save and run a java code on notepad
2 Respuestas
+ 1
- Save it as a .java file.
- From cmd: javac <yourfile>
- From cmd: java -cp . <yourfile>
As far as "should," I think you -should- use an IDE instead of notepad, but to each their own.
0
ok thanks