2021年12月4日 星期六

2進位與16進位

 #include <stdio.h>

#include <stdlib.h>

int main() 

{

    //2進位表示法bits

//01

//0b1111111

//16進位表示法 hex

//0123456789abcdef

//0x11223344

printf("%x\n",255); 

return 0;

}


#include <stdio.h>

#include <stdlib.h>

int main() 

{

    //2進位表示法bits

//01

//0b11111111//硬體控制會寫到

//16進位表示法 hex

//0123456789abcdef

//0x11223344

printf("%x\n",0b11111111); //compiler是認得的

return 0;

}


#include <stdio.h>

#include <stdlib.h>

int main() 

{

  char word0='a';

  printf("%c\n",word0) ;

  printf("%c \n",97);

  printf("%c\n",0x61);

return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...