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

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
3번째 줄: 3번째 줄:
==PHP==
==PHP==
[[category: PHP]]
[[category: PHP]]
<source lang='php'>
<syntaxhighlight lang='php'>
function divmod( $a, $b ) { return [(int)($a/$b), $a%$b]; }
function divmod( $a, $b ) { return [(int)($a/$b), $a%$b]; }
print_r( divmod(13, 5) );
print_r( divmod(13, 5) );
11번째 줄: 11번째 줄:
#    [1] => 3
#    [1] => 3
# )
# )
</source>
</syntaxhighlight>


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


==같이 보기==
==같이 보기==
25번째 줄: 25번째 줄:
*[[quotient]]
*[[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 }}