First Java program
Basic steps to see the output in Java career
- Write a program (Ex: Sample.java)
- Compile Sample.java
- Run Sample.class
- Output
---------------------------------------------------------------------------------------------------
Output : Hello Nireekshan
Program name : Sample.java
class Sample
{
public static void main(String args[])
{
System.out.println(“Hello Nireekshan”);
}
}
Compile : javac Sample.java
Run : java Sample
Output : Hello Nireekshan
---------------------------------------------------------------------------------------------------
Save Program:
- We need to save program with .java extension.
- Above program we saved with the name of Sample.java
Thanks for your time.
Nireekshan