请用C语言写一段程序:输出字符对应的ascii码 每5个换一行
时间: 2023-05-15 18:04:57 浏览: 114
按各字符的ASCII码从小到大的顺序输出这三个字符的C语言程序
以下是C知道的回答:
#include <stdio.h>
int main() {
char c;
int count = 0;
printf("请输入一个字符:\n");
scanf("%c", &c);
while (c != '\n') {
printf("%c的ASCII码为%d\t", c, c);
count++;
if (count % 5 == 0) {
printf("\n");
}
scanf("%c", &c);
}
return 0;
}
注意:以上代码是C语言的,可以输出字符对应的ASCII码,每5个字符换一行。
阅读全文