c语言输入三个大写字母,输出三个小写字母
时间: 2023-05-27 16:03:58 浏览: 247
以下是使用C语言编写的程序,可以输入三个大写字母并将其转换为小写字母:
```c
#include <stdio.h>
int main() {
char c1, c2, c3;
printf("请输入三个大写字母(用空格分隔):");
scanf("%c %c %c", &c1, &c2, &c3);
c1 += 32; // 将c1转换为小写字母
c2 += 32; // 将c2转换为小写字母
c3 += 32; // 将c3转换为小写字母
printf("对应的小写字母为:%c %c %c\n", c1, c2, c3);
return 0;
}
```
运行并输入三个大写字母,程序会将它们转换为小写字母并输出:
```
请输入三个大写字母(用空格分隔):A B C
对应的小写字母为:a b c
```
相关问题
键盘输入三个大写字母 输出小写字母
当然,如果你想要将键盘输入的三个大写字母转换为小写字母,你可以使用C语言中的标准库函数`tolower()`,它会把大写字母转换成小写字母。下面是一个简单的示例代码:
```c
#include <stdio.h>
#include <ctype.h> // 包含tolower函数
int main() {
char input[3]; // 假设用户最多输入三个字母
printf("请输入三个大写字母:");
// 读入用户输入的三个字符
for (int i = 0; i < 3 && getchar() != '\n'; i++) { // getchar()防止回车直接结束输入
input[i] = getchar();
}
// 对每一个字符应用tolower()
for (int i = 0; i < 3; i++) {
if (isalpha(input[i])) { // 检查字符是否为字母
input[i] = tolower(input[i]);
}
}
printf("转换后的小写字母是:%s\n", input);
return 0;
}
```
当用户输入三个大写字母后,这个程序会将其转换为小写形式并打印出来。
c语言实现输入三个字母,如有小写字母就转换成大写字母输出。
可以使用C语言中的字符处理函数toupper()将小写字母转换成大写字母,然后输出。以下是一个示例代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c1, c2, c3;
printf("请输入三个字母:");
scanf("%c%c%c", &c1, &c2, &c3);
if(islower(c1)) {
c1 = toupper(c1);
}
if(islower(c2)) {
c2 = toupper(c2);
}
if(islower(c3)) {
c3 = toupper(c3);
}
printf("转换后的结果为:%c%c%c\n", c1, c2, c3);
return 0;
}
```
输入三个字母后,程序会依次判断每个字母是否是小写字母,如果是则使用toupper()函数将其转换成大写字母,最后输出转换后的结果。
阅读全文