"함수 divmod()"의 두 판 사이의 차이

4번째 줄: 4번째 줄:
[[category: PHP]]
[[category: PHP]]
<source lang='php'>
<source lang='php'>
function divmod( $a, $b ) {
function divmod( $a, $b ) { return [(int)($a/$b), $a%$b]; }
return [(int)($a/$b), $a%$b];
}
print_r( divmod(13, 5) );
print_r( divmod(13, 5) );
# Array
# Array

2016년 5월 23일 (월) 20:02 판


1 PHP

function divmod( $a, $b ) { return [(int)($a/$b), $a%$b]; }
print_r( divmod(13, 5) );
# Array
# (
#     [0] => 2
#     [1] => 3
# )

2 Python

print( divmod(13, 5) )
# (2, 3)

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}