Sum of two numbers

Advertisements

Prev Tutorial Next Tutorial

Sum of two numbers by receiving value from keyboard

In this program we use two variables which receive value from keyboard and add these valuse and sum of these numbers are store in third variable.

Receive Input from Keyboard in Java

import java.util.Scanner;
class Addition 
{
	public static void main(String[] args) 
	{
    int a, b, c=0;
	Scanner s=new Scanner(System.in);
	System.out.println("Enter any two numbers :");
	a=s.nextInt();
	b=s.nextInt();
	c=a+b;
	System.out.println("Sum: "+c);
	}
}

Output

Enter any two numbers : 
10
20
Sum: 30

Syntax to compile and run java program

Syntax

for compile -> c:/javac Addition.java
for run -> c:/java Addition

Explnation of Code

  • Scanner s=new Scanner(System.in): are used for receive input from keyboard.
  • nextInt(): method are used for get integer type value from keyboard.
  • System.out.println("....."): are used for display message on screen or console.

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements