设计一个程序:C语言输入大写字母,转换为小写字母,程序要求如下:提示信息:"Press a key and then press Enter:" 程序运行示例如下: Press a key and then press Enter:B b
时间: 2024-05-14 07:11:53 浏览: 51
C语言程序设计-从键盘输入一个大写字母,要求改用小写字母输出;.c
```
#include <stdio.h>
int main() {
char ch;
printf("Press a key and then press Enter:");
scanf("%c", &ch);
if (ch >= 'A' && ch <= 'Z') {
ch += 32; // 转换为小写字母
}
printf("%c\n", ch);
return 0;
}
```
阅读全文