0
What is the statement which is used to rum the program in java?
2 Answers
+ 2
So to run a program you need atleast this
public class Program{
public static void main(String[] args){
Stuff you want to happen goes. in here
}
}
To physically run the program you must compile it and then double click the jar file
0
Java classname