从键盘输入一个字符,按规定格式输出这个字符及它的ASCII
码。例如:
输入 A
输出 “The ASCII of 'A' is 65”.
#include <stdio.h>
int main()
{
char a;
scanf("%c",&a);
printf("\"The ASCII of '");
printf("%c",a);
printf("' is %d\".\n",(int)a);
return 0;
}
从键盘输入一个字符,按规定格式输出这个字符及它的ASCII
码。例如:
输入 A
输出 “The ASCII of 'A' is 65”.
#include <stdio.h>
int main()
{
char a;
scanf("%c",&a);
printf("\"The ASCII of '");
printf("%c",a);
printf("' is %d\".\n",(int)a);
return 0;
}