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

잔글 (봇: Bitwise을(를) 비트 연산(으)로 분류 대체함)
1번째 줄: 1번째 줄:
;bitwise NOT
;bitwise NOT
;비트연산 NOT
;비트연산 NOT
==C==
<source lang='c'>
#include<stdio.h>
int main() {
  printf("%d",~2); // -3
}
</source>
==PHP==
==PHP==
<source lang='PHP'>
<source lang='PHP'>

2019년 3월 23일 (토) 11:48 판

bitwise NOT
비트연산 NOT

1 C

#include<stdio.h>
int main() {
   printf("%d",~2); // -3
}

2 PHP

echo ~2;
// -3

3 Python

print ~2
# -3

4 같이 보기

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