编写程序,从键盘输入小写字母,转换为大写字母输出。

如题所述

第1个回答  2023-03-20
#include void main() { char c; printf("请输入a--z:"); getchar(c); putchar(c+32);}
相似回答
大家正在搜