Add two numbers in Java

Step 1: Lets open a notepad and write the following code.

//Code

  1. class demo  
  2. {  
  3.     public static void main(String arg[])   
  4.     {  
  5.         int a = 10, b = 20, c = 0;  
  6.         c = a + b;  
  7.         System.out.println("sum of two no is :" + c);  
  8.     }  
  9. }  
Step 2: Name it as "ab.java" and save the file on any location. I saved at "C:\app".

Step 3: Open command prompt (Press window + R and write cmd and hit OK).



Step 4: Go to "C:\app" by using command propmpt



Step 5: Now write the following code for checking my java file is compiling or not.

javac ab.java



My java program compiled successfully.

Step 6: Write the following code in command prompt. Press enter and see the output.

java demo

// demo is a class name which is written in my ab.java file.

Output



Happy Coding.

Ebook Download
View all
Learn
View all