从键盘输入一个大写英文字母,将其转换为小写字母后,再显示到屏幕上(显示字符后要输出一个换行)。\n**输入格式要求:提示信息:\"press a key and then press enter:\"\n程序
时间: 2023-04-26 18:02:55 浏览: 61
将输入的大写字母改用小写字母输出
如下:
```
#include <stdio.h>
int main() {
char c;
printf("press a key and then press enter:");
scanf("%c", &c);
c = c + 32; // 大写字母转换为小写字母
printf("%c\n", c);
return ;
}
```
阅读全文