About 368,000 results
Open links in new tab
  1. Java How To Add Two Numbers - W3Schools

    Learn how to add two numbers with user input: x = myObj.nextInt(); // Read user input System.out.println("Type another number:"); . y = myObj.nextInt(); // Read user input . sum = x + y; // Calculate the sum of x + y System.out.println("Sum is: " + sum); // Print the sum } }

  2. Java Program to Add Two Integers

    In this program, you'll learn to store and add two integer numbers in Java. After addition, the final sum is displayed on the screen. Learn to code solving problems and writing code with our hands-on Java course.

  3. Java Program to Add Two Numbers - GeeksforGeeks

    Dec 25, 2023 · Given two matrices A and B of the same size, the task is to add them in Java. Examples: Input: A[][] = {{1, 2}, {3, 4}} B[][] = {{1, 1}, {1, 1}} Output: {{2, 3}, {4, 5}} Input: A[][] = {{2, 4}, {3, 4}} B[][] = {{1, 2}, {1, 3}} Output: {{3, 6}, {4, 7}} …

  4. Integer sum () Method in Java - GeeksforGeeks

    Apr 3, 2023 · The java.lang.Integer.sum () is a built-in method in java that returns the sum of its arguments. The method adds two integers together as per the + operator. Syntax : Parameter: The method accepts two parameters that are to be added with each other: a : the first integer value. b : the second integer value.

  5. Java Program Addition Of Two Numbers – 4 Ways | Programs - Java

    Apr 16, 2025 · Java program to print or calculate addition of two numbers with sample outputs and example programs.

  6. Java Program To Add Two Numbers (Scanner) For Freshers

    Nov 12, 2019 · This program shows how to find the sum of two numbers in a java programming language. This is a very basic when we learn any language first. So, We will see how to do sum for two numbers using '+' symbol directly and next …

  7. Java Program to Add two Numbers - Javacodepoint

    Aug 12, 2022 · In this article, you will learn how to write a Java program to add two numbers. Here, you will see multiple solutions for it such as adding or sum of two static numbers, the sum of two dynamic given numbers, and Adding two Numbers using command-line arguments.

  8. Java Program to Add two Numbers - BeginnersBook

    Jul 25, 2022 · In this tutorial, you will learn how to write a Java program to add two numbers. We will see three programs: In the first program, the values of the two numbers are given. In the second program, user is asked to enter the two numbers and the program calculates the sum of the input numbers.

  9. Write and Execute Java Addition Program - EasyCodeBook.com

    Aug 4, 2019 · This Java Programming Tutorial will provide and explain the source code of a basic addition program in Java. The program will input two numbers from the user at run time. The Java program will calculate the sum of these two numbbers and will display the answer of addition.

  10. 10 simple ways to add two numbers in Java - Codeforcoding

    Feb 24, 2025 · In this post, we are going to learn how to find sum of two number using 10 ways (methods) in Java programming language. Methods to add two numbers. Here, we use a simple “+” operator to find the addition of two numbers. Program 1. When the above code is executed, it produces the following result.

  11. Some results have been removed
Refresh