Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

โปรแกรม Java เพิ่มตัวเลขสองตัว


ในบทความนี้ เราจะเข้าใจวิธีการเพิ่มตัวเลขสองตัวใน Java ซึ่งสามารถทำได้โดยใช้ตัวดำเนินการ '+'

ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -

ป้อนข้อมูล

สมมติว่าข้อมูลที่เราป้อนคือ −

input_1 : 10
input_2 : 15

ผลผลิต

ผลลัพธ์ที่ต้องการจะเป็น −

Sum : 25

อัลกอริทึม

Step1- Start
Step 2- Declare three integers: input_1, input_2 and sum
Step 3- Prompt the user to enter two integer value/ define the integers
Step 4- Read the values
Step 5- Add the two values using an addition operator (+)
Step 6- Display the result
Step 7- Stop

ตัวอย่างที่ 1

ที่นี่ ผู้ใช้ป้อนอินพุตตามข้อความแจ้ง คุณสามารถลองใช้ตัวอย่างนี้ในเครื่องมือกราวด์ของเรา โปรแกรม Java เพิ่มตัวเลขสองตัว .

import java.util.Scanner;
public class NumberAddition{
   public static void main(String[] args){
      int input_1, input_2, my_sum;
      Scanner my_scanner = new Scanner(System.in);
      System.out.println("A reader object has been defined ");
      System.out.println("Enter the first number: ");
      input_1 = my_scanner.nextInt();
      System.out.println("Enter the second number: ");
      input_2 = my_scanner.nextInt();
      my_scanner.close();
      System.out.println("The scanner object has been closed");
      my_sum = input_1 + input_2;
      System.out.println("Sum of the two numbers is: ");
      System.out.println(my_sum);
   }
}

ผลลัพธ์

A reader object has been defined
Enter the first number:
23
Enter the second number:
45
The scanner object has been closed
Sum of the two numbers is:
68

ตัวอย่างที่ 2

ในที่นี้ มีการกำหนดจำนวนเต็มก่อนหน้านี้ และเข้าถึงและแสดงค่าบนคอนโซล

public class NumberAddition{
   public static void main(String[] args){
      int value_1, value_2, my_sum;
      value_1 = 10;
      value_2 = 15;
      System.out.printf("The two numbers are %d and %d",value_1, value_2 );
      System.out.printf("\n");
      my_sum = value_1 + value_2;
      System.out.println("The numbers have been added using '+' operator");
      System.out.println("\nSum of the two numbers is : ");
      System.out.println(my_sum);
   }
}

ผลลัพธ์

The two numbers are 10 and 15
The numbers have been added using '+' operator

Sum of the two numbers is :
25