Computer >> 컴퓨터 >  >> 프로그램 작성 >> 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

여기에서 입력은 프롬프트에 따라 사용자가 입력하고 있습니다. 우리코딩 그라운드 도구에서 이 예제를 라이브로 사용해 볼 수 있습니다. 두 숫자를 더하는 자바 프로그램 .

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