anyone plzz give simple Java program
Answers
Answered by
1
Answer:
Simple Java program is here
class Brainly
{
void main()
{
System.out.println("Hello this is a simple Java program");
}
}
Note: U are at beginner level so run it in BlueJ
Answered by
0
Answer:
To create a simple java program, you need to create a class that contains the main method.
...
Let's create the hello java program:
class Simple{
public static void main(String args[]){
System. out. println("Hello Java");
}
}
Similar questions