"비트연산 shift right"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 Right Shift 문서를 Right shift 문서로 옮겼습니다)
4번째 줄: 4번째 줄:
[[category: PHP]]
[[category: PHP]]
<source lang='Python'>
<source lang='Python'>
echo 8 >> 1; // 4
echo 7 >> 1; // 3
echo 8 >> 2; // 2
echo 7 >> 2; // 1
</source>
</source>


11번째 줄: 11번째 줄:
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<source lang='Python'>
print 8 >> 1 # 4
print 7 >> 1 # 3
print 8 >> 2 # 2
print 7 >> 2 # 1
</source>
</source>


==같이 보기==
==같이 보기==
*[[left shift]]
*[[left shift]]

2014년 5월 30일 (금) 03:44 판


1 PHP

echo 7 >> 1; // 3
echo 7 >> 2; // 1

2 Python

print 7 >> 1 # 3
print 7 >> 2 # 1

3 같이 보기

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