怎么知道指定字符的ASCII值

2025-03-19 05:24:44
推荐回答(1个)
回答1:

#include
int main()

{char ch;
scanf("%c",&ch);
printf("%c: %d\n",ch,ch);

return 0;

}