- #include <stdio.h>
- void changTo2 (int n){
- int Len = sizeof(n)*8;
- int temp=0;
- for (int i=0; i<Len; i++) {
- temp = n;
- temp = temp >> (31 - i);
- int t = temp & 1;
- printf("%d",t);
-
- }
-
- }
- int main(int argc, const char * argv[]) {
- changTo2(13);
-
-
- return 0;
- }
复制代码
|
|