用C语言编写一个程序,从键盘上输入一个小写字母,将其本身及对应的大写字母输出.

2024-11-14 01:06:49
推荐回答(1个)
回答1:

#include
int main()
{
char ch;
scanf("%c",&ch);
printf("%c",ch-'a'+'A');
return(0);
}