This is a very basic program in Java programming language. If you are a Java beginners or want to start learning Java programming language, then this program will help you to understand the basic Java programming. In this post, I will explain about a Java program to subtract any two numbers with an example and program output.
Before executing this program I assume you have configured Java in your computer.
Copy the below program and create a file “SubstractProgram.java” and execute it to subtract any two numbers.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import java.io.*; class SubstractProgram { public static void main(String args[])throws Exception { int a,b,c; BufferedReader br= new BufferedReader( new InputStreamReader(System.in)); System.out.println("Enter any two numbers to subtract:"); a=Integer.parseInt(br.readLine()); b=Integer.parseInt(br.readLine()); c = a-b; System.out.println("\nSubtract of two numbers:"+ c); } } |
Enter any two numbers to subtract:
50
20
Subtract of two numbers: 30
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.
Article Tags: Java program, java program to substract two numbers, Java programming, Java programs, Java programs with examples, Java programs with output