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

Java에서 몫과 나머지를 찾는 프로그램

<시간/>

Java에서 몫과 나머지를 구하는 코드는 다음과 같습니다. -

예시

public class Demo{
   public static void main(String[] args){
      int my_dividend = 11, my_divisor = 7;
      int my_quotient = my_dividend / my_divisor;
      int my_remainder = my_dividend % my_divisor;
      System.out.println("The value of computed quotient is = " + my_quotient);
      System.out.println("The value of computed remainder is = " + my_remainder);
   }
}

출력

The value of computed quotient is = 1
The value of computed remainder is = 4

Demo라는 클래스에는 피제수 및 제수 값이 정의되는 주 함수가 포함되어 있습니다. 몫과 나머지는 각각 '/'연산자와 '%'모듈러스 연산자를 사용하여 구합니다. 값이 다른 변수에 할당되고 결과가 콘솔에 표시됩니다.