摘要: c语言中以10进制、8进制、16进制显示同一个数字。 1、 #include <stdio.h> int main(void) { int x = 100; printf("dec: %d; octal: %o; hexadecimal: %x\n", x, x, x); printf("dec: 阅读全文
posted @ 2021-06-22 21:13 小鲨鱼2018 阅读(205) 评论(0) 推荐(0) 编辑