摘要: 1. 1 /* 2 编写一程序要求任意输入四位十六进制整数,以反序的方式输出该十六进制数。 3 */ 4 #include <stdio.h> 5 6 int main() 7 { 8 char a, b, c, d; 9 scanf("%c%c%c%c", &a, &b, &c, &d); 10 阅读全文
posted @ 2021-07-12 11:30 长风青云 阅读(531) 评论(0) 推荐(0)