I have downloaded a java developers kit for my 64bit windows 7, wrote down my code in the notepad, though the code is compiling from the command prompt and creating a .class fil
A java program has this basic structure:
ClassName.java
public class ClassName { public static void main(String[] args) { } }
try using this outline to generate your code.
compile and run with:
javac ClassName.java java ClassName