Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

몫과 나머지를 계산하는 Java 프로그램

<시간/>

이 기사에서는 Java에서 몫과 알림을 계산하는 방법을 이해합니다. 몫 및 알림은 "Quotient =Dividend / Divisor" 및 "Remainder =Dividend % Divisor"라는 두 가지 간단한 공식을 사용하여 계산됩니다.

정수 a와 0이 아닌 정수 d가 주어지면 a =qd + r 및 0 ≤ r <|d|와 같이 고유한 정수 q와 r이 존재함을 나타낼 수 있습니다. 숫자 q를 몫이라고 하고 r을 나머지라고 합니다.

아래는 동일한 데모입니다 -

몫과 나머지를 계산하는 Java 프로그램

입력

입력이 -

라고 가정합니다.
Dividend value: 50
Divisor: 3

출력

원하는 출력은 -

Quotient: 16
Remainder: 2

알고리즘

Step1- Start
Step 2- Declare four integers as my_dividend , my_divisor, my_quotient, my_remainder
Step 3- Prompt the user to enter two integer value that is my_dividend , my_divisor or define
the integers
Step 4- Read the values
Step 5- Use the formula to find the quotient and the reminder "Quotient = Dividend /
Divisor" and "Remainder = Dividend % Divisor"
Step 6- Display the result
Step 7- Stop

예시 1

여기에서 입력은 프롬프트에 따라 사용자가 입력하고 있습니다. 우리코딩 그라운드 도구에서 이 예제를 라이브로 사용해 볼 수 있습니다. 몫과 나머지를 계산하는 Java 프로그램 .

import java.util.Scanner;
public class RemainderQuotient {
   public static void main(String[] args) {
      int my_dividend , my_divisor, my_quotient, my_remainder;
      System.out.println("Required packages have been imported");
      Scanner my_scanner = new Scanner(System.in);
      System.out.println("A scanner object has been defined ");
      System.out.print("Enter the value of dividend : ");
      my_dividend = my_scanner.nextInt();
      System.out.print("Enter the value of divisor : ");
      my_divisor = my_scanner.nextInt();
      my_quotient = my_dividend / my_divisor;
      my_remainder = my_dividend % my_divisor;
      System.out.println("The quotient is " + my_quotient);
      System.out.println("The remainder is " + my_remainder);
   }
}

출력

Required packages have been imported
A reader object has been defined
Enter the value of dividend : 50
Enter the value of divisor : 3
The quotient is 16
The remainder is 2

예시 2

여기서 정수는 이전에 정의되었으며 그 값은 콘솔에 액세스되어 표시됩니다.

public class RemainderQuotient {
   public static void main(String[] args) {
      int my_dividend , my_divisor, my_quotient, my_remainder;
      my_dividend = 50;
      my_divisor = 3;
      System.out.println("The divident and the divisor are defined as " +my_dividend +" and " +my_divisor);
      my_quotient = my_dividend / my_divisor;
      my_remainder = my_dividend % my_divisor;
      System.out.println("The quotient is " + my_quotient);
      System.out.println("The remainder is " + my_remainder);
   }
}

출력

The divident and the divisor are defined as 50 and 3
The quotient is 16
The remainder is 2