"비트연산 AND"의 두 판 사이의 차이

4번째 줄: 4번째 줄:
[[category: PHP]]
[[category: PHP]]
<source lang='Python'>
<source lang='Python'>
echo 4 & 5;
echo 5 & 6;
// 4
// 4
</source>
</source>
11번째 줄: 11번째 줄:
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<source lang='Python'>
print 4 & 5
print 5 & 6
# 4
# 4
</source>
</source>

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


1 PHP

echo 5 & 6;
// 4

2 Python

print 5 & 6
# 4

3 같이 보기

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