大力冥王星

文章
5
资源
0
加入时间
2年10月17天

郝斌C语言代码

#include<stdio.h>int main(){ int a=15; printf("%#x\n",a); return 0; }/* output 0xf;*///(15)10= (f)16//#x的作用是把一个数用16进制表示出来#include<stdio.h>int main()...