How to add two int numbers in Java Example

How to add two int numbers in Java Example

How to add two int numbers in Java Example

View Answers

September 3, 2012 at 1:03 PM

Here is a java example that accepts two integer from the user and find their sum.

import java.util.*;
class AddNumbers
{
    public static void main(String[] args) 
    {
        Scanner input=new Scanner(System.in);
        System.out.print("Enter first number: ");
        int num1=input.nextInt(); 
        System.out.print("Enter second number: ");
        int num2=input.nextInt();
        int sum=num1+num2;
        System.out.println("Result is: "+sum);
    }
}









Related Tutorials/Questions & Answers:
How to add two numbers in Java?
How to add two numbers in a Java program? In Java you can easily add... numbers in Java it will return you int value as sum of two numbers. In real world... this will print: Sum is: 30 So, in this program you learned how to sum(add) two numbers
Add two big numbers - Java Beginners
Add two big numbers - Java Beginners  Hi, I am beginner in Java and leaned basic concepts of Java. Now I am trying to find example code for adding big numbers in Java. I need basic Java Beginners example. It should easy
Advertisements
how to add to numbers in java
how to add to numbers in java  how to add to numbers in java
Applet for add two numbers
Applet for add two numbers  what is the java applet code for add two numbers?   import java.awt.Graphics; import javax.swing.*; public...); add(text2); label3 = new Label("Sum of Two Numbers
Add two number in java
Add two number in java In this section you will learn about how to add two number in java. In java adding two number,  first taking the input provided... be added, So two add,  convert these String into numeric type
Add Two Numbers in Java
Add Two Numbers in Java     ... these arguments and print the addition of those numbers. In this example, args.... So to add, you have to convert these Strings in numeric type (int
Add two big numbers
Add two big numbers       In this section, you will learn how to add two big numbers...(BigDecimal big): This method is used to add the two BigDecimal numbers. Here
Swapping of two numbers in java
Swapping of two numbers in java In this example we are going to describe swapping of two numbers in java  without using the third number in java. We... values from the command prompt. The swapping of two numbers is based on simple
Sum of two numbers using command line arguments in Java
sum = a+b; Check complete example code at Add Two Numbers in Java. Thanks...Sum of two numbers using command line arguments in Java  Hi, How...? The calculate the sum of two numbers using command line arguments in Java
Add Complex Numbers Java
How to Add Complex Numbers Java In this Java tutorial section, you will learn how to add complex Numbers in Java Programming Language. As you are already aware of Complex numbers. It is composed of two part - a real part and an imaginary
adding two numbers - Java Beginners
]=Integer.parseInt(in.readLine()); int s=x[1]+y[1]; System.out.println("Sum of two...adding two numbers  hii friends....... this is my program... Add2Numbers{ public static void main(String args[])throws IOException{ int[] x=new
JavaScript determine add, product of two numbers
JavaScript determine add, product of two numbers In this section, you will learn how to determine addition, multiplication, division and modulus of two numbers. To find this, we have created two textboxes and four button
Comparing Two Numbers
Comparing Two Numbers       This is a very simple example of Java that teaches you the method of comparing two numbers and finding out the greater one. First of all, name a class
Addition of two numbers
Addition of two numbers  addition of two numbers
Find L.C.M. of two numbers in Java
Find L.C.M. of two numbers in Java Program In this section, you will learn how to find LCM(Least Common Element) of two integers.The least common multiple... have created a method determineLCM(int a, int b) where we have compared the two
Listing all even numbers between two numbers
Listing all even numbers between two numbers  Hi, How to write code to list all the even numbers between two given numbers? Thanks   Hi... the numbers. Check the tutorial Write a program to list all even numbers between two
Adding two numbers
Adding two numbers  Accepting value ffrom the keyboard and adding two numbers
Writing and testing method of addition of two numbers
method which takes two int parameters to add them and return it . Save and compile... Writing and testing method of addition of two numbers  ... a method named sum() which takes two int parameters and return addition of these two
how to add two object in a particular file - Java Beginners
how to add two object in a particular file  Hi frend.. I have two arraylist object in which there is some data..............now i want to add these two objects in a particular file using file handling in java....and also
How can you add elements of two arrayLists in java?
How can you add elements of two arrayLists in java?  if you have an arrayList of tempArr = [hi, my, name, is, john] and another arrayList..., is d, john e] how do you go about
How to convert String to int in Java
into the int variable. How to convert String to int in Java? Thanks   Hi, In Java you can convert String to in with the help of following two functions...How to convert String to int in Java  Hi, I have String with int
How to convert String to int in Java
into the int variable. How to convert String to int in Java? Thanks   Hi, In Java you can convert String to in with the help of following two functions...How to convert String to int in Java  Hi, I have String with int
How to convert String to int in Java
into the int variable. How to convert String to int in Java? Thanks   Hi, In Java you can convert String to in with the help of following two functions...How to convert String to int in Java  Hi, I have String with int
How to convert String to int in Java
into the int variable. How to convert String to int in Java? Thanks   Hi, In Java you can convert String to in with the help of following two functions...How to convert String to int in Java  Hi, I have String with int
Swapping of two numbers
ability. In this program we will see how we can swap two numbers. We can do... Swapping of two numbers      ... program to calculate swap of two numbers. Swapping is used where  you want
adding of two numbers in designing of frame
adding of two numbers in designing of frame  hello sir, now i'm create two textfield for mark1&mark2 from db.how to add these two numbers... rs=st.executeQuery("select * from student where id=1"); int mar1
mysql difference between two numbers
mysql difference between two numbers  How to get total bate difference between two dates for example 1/01/2012 and 1/02/2012 in MYSQL?   ... between two date. The syntax of DATEDIFF is .. SELECT DATEDIFF('2012-01-31 23:59
To find first two maximum numbers in an array
To find first two maximum numbers in an array  Java program to find first two maximum numbers in an array,using single loop without sorting array
Generate random number between two numbers in Scala
Generate random number between two numbers in Scala  Hi, How to Generate random number between two numbers in Scala? Thanks   Hi...) + 1); genValue: Int = 30 scala> Thanks
Generate random number between two numbers in Scala
Generate random number between two numbers in Scala  Hi, How to Generate random number between two numbers in Scala? Thanks   Hi...) + 1); genValue: Int = 30 scala> Thanks
adding two numbers with out using any operator
adding two numbers with out using any operator  how to add two numbers with out using any operator   import java.math.*; class AddNumbers { public static void main(String[] args) { BigInteger num1=new
Swapping of two numbers without using third variable
Swapping of two numbers without using third variable In this tutorial we will learn about swapping of two number in java without using third variable... b has value 10  Example : Using this example we will explain you how
add
How to add two int numbers in Java Example  How to add two int numbers in Java Example  Here is a java example that accepts two integer...(System.in); System.out.print("Enter first number: "); int num1
How to add BigDecimal in Java?
How to add BigDecimal in Java?  Hi, I have two BigDecimal variables. I want to add these two values. How to add BigDecimal in Java? Thanks   Hello, I will show you how you can add two BigDecimal? Suppose you have
adding two numbers using bitwise operators
adding two numbers using bitwise operators  adding two integer numbers with using bitwise opeators   Hi Friend, Try the following code...[] args) { System.out.println("Adding 5 and 6......"); int x=5,y=6; int xor
How to add two calendars on the same html page
How to add two calendars on the same html page  I have used the same... use single calendar for a single html page.but while implementing two calendars.... Rest of the code remains same. <html> <head> <title>Java
Java BigDecimal add example
Java BigDecimal add example       In this example working of .add() method is demonstrated in following two constructor forms add(BigDecimal augend) and add(BigDecimal augend
SQL Add Column Int
on 'SQL Add Column Int'.To understand and grasp the example we create a table... SQL Add Column Int       SQL Add Column Int modifies the definition of table and add a new column
how to write a program in java to print numbers in equalateral triangle
how to write a program in java to print numbers in equalateral triangle  the output must be 1 324 76589   Here is an example of pattern 1 2 3 4 5 6 7 8 9 Example: public class NumberTriangle{ public
Write a program to list all even numbers between two numbers
Write a program to list all even numbers between two numbers       Java Even Numbers - Even Numbers Example in Java: Here you will learn to write a program for listing out
jaVA INT
jaVA INT  Read a text file and precede the line with the line number and write it to another new text file. For example if you create a file... numbers preceding me. Is it there ? shall be written to Destination.txt as: 1
ModuleNotFoundError: No module named 'add_numbers'
'add_numbers' How to remove the ModuleNotFoundError: No module named 'add_numbers' error? Thanks   Hi, In your python environment...ModuleNotFoundError: No module named 'add_numbers'  Hi, My Python
how to add new column before two column in sql.
how to add new column before two column in sql.  how to add new column in table before two column in sql.   Syntax of Alter table: ALTER... named 'employee' having three fields id, name and salary. Now we want to add two
how to add new column before two column in sql.
how to add new column before two column in sql.  how to add new column in table before two column in sql.   Syntax of Alter table: ALTER... named 'employee' having three fields id, name and salary. Now we want to add two
how to add new column before two column in sql.
how to add new column before two column in sql.  how to add new column in table before two column in sql.   Syntax of Alter table: ALTER... named 'employee' having three fields id, name and salary. Now we want to add two
how to add new column before two column in sql.
how to add new column before two column in sql.  how to add new column in table before two column in sql.   Syntax of Alter table: ALTER... named 'employee' having three fields id, name and salary. Now we want to add two
Calculator program in Java
Calculator program in Java is used by programmer to add, subtract, multiply or divide two integer numbers that are input by system. In the given example... into integers. If the user enters a "+" operator it will add the two integer numbers
Insert an element with the add(int, Object) method
an element at the specified position using the add(int, Object) method. Here is an example that provides the usage of the add(int, Object) method in more detail... Insert an element with the add(int, Object) method   
SQL Add Column Int
a SQL Add Column Int example .In this Tutorial we create a table Stu_Table using... SQL Add Column Int       SQL Add Column Int is used to add new column, whose field data type
How to rewind the int buffer in java.
How to rewind the int buffer in java. In this tutorial, we will discuss how to rewind the int buffer in java.  IntBuffer API... static IntBuffer allocate( int capacity)  The allocate() method

Ads