관리 메뉴

PHPINFO

PHP 몫과 나머지 구하기 본문

PHP

PHP 몫과 나머지 구하기

2020. 5. 26. 21:10
반응형

PHP에서 몫과 나머지를 구하는 몇 가지 방법을 소개합니다. 

 

$b를 $a로 나누었을 때의 몫과 나머지

<?php
# $b를 $a로 나누었을 때의 몫과 나머지 구하기

//몫 구하는 방법 1
$quotient = ($b - ($b % $a)) / $a; 

//몫 구하는 방법 2
$quotient = sprintf('%d', $b / $a);

// 나머지 구하는 방법
$remainder = $b % $a;

 

함수로 간단히 몫과 나머지 구하는 예제

<?php
function getQuotientAndRemainder($divisor, $dividend) {
    $quotient = (int)($divisor / $dividend);
    $remainder = $divisor % $dividend;
    return array( $quotient, $remainder );
}

list($quotient, $remainder) = getQuotientAndRemainder(10, 3);
더보기

참고

How to find remainder and quotient in php?

 

몫과 나머지 영어로

몫 : quotient

나머지 : remainder

 

Comments