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

(새 문서: category: Math ==Python== category: Python <source lang='Python'> print( divmod(13, 5) ) (2, 3) </source> ==같이 보기== *modulo)
 
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 7개는 보이지 않습니다)
1번째 줄: 1번째 줄:
[[category: Math]]
[[category: Math]]
==PHP==
[[category: PHP]]
<syntaxhighlight lang='php'>
function divmod( $a, $b ) { return [(int)($a/$b), $a%$b]; }
print_r( divmod(13, 5) );
# Array
# (
#    [0] => 2
#    [1] => 3
# )
</syntaxhighlight>


==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
{{참고|Python divmod()}}
<syntaxhighlight lang='Python'>
print( divmod(13, 5) )
print( divmod(13, 5) )
(2, 3)
# (2, 3)
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[함수 fmod()]]
*[[quotient]]
*[[modulo]]
*[[modulo]]
*[[몫, 나머지]]

2020년 11월 2일 (월) 02:32 기준 최신판


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