c语言由键盘输入1个大写字母,将其转换成小写字母后输出
时间: 2023-05-29 15:07:29 浏览: 122
C语言程序设计-从键盘输入一个大写字母,要求改用小写字母输出;.c
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c;
printf("Enter a uppercase letter: ");
scanf("%c", &c);
if(isupper(c)) { // 检查输入的是否为大写字母
c = tolower(c); // 将大写字母转换为小写字母
printf("The lowercase letter is: %c", c);
} else {
printf("Invalid input!");
}
return 0;
}
```
阅读全文