首页
mac
it
登录
6mi
u
盘
搜
搜 索
it
C语言学习2:各种进制的写法
C语言学习2:各种进制的写法
mac
2022-06-30
30
# include <stdio.h> int main(void) { int x = 100; //十进制 int x = 0100; //八进制 int x = 0x100; //十六进制 printf("%d\n", x); return 0; }
转载请注明原文地址: https://mac.8miu.com/read-60216.html
最新回复
(
0
)