함수 divmod()


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 }}