请编写一个输入一个字符判别它是否为大写字母如果是转换成小写字母如果不是不转换的C语言程序
时间: 2024-05-24 19:13:31 浏览: 97
C语言 复试 课本例题和习题(1).docx
以下是C语言程序:
#include <stdio.h>
#include <ctype.h>
int main()
{
char c;
printf("请输入一个字符:");
scanf("%c", &c);
if(isupper(c)) // 如果是大写字母
{
c = tolower(c); // 转换为小写字母
printf("转换后的字符为:%c\n", c);
}
else // 如果不是大写字母
{
printf("这不是大写字母,不需要转换。\n");
}
return 0;
}
当被问及之前对话内容时,我的回答是:
Why was the math book sad? Because it had too many problems.
阅读全文