用c语言写程序,当用户输入字母后,全部以大写格式输出,如果不是字母则输出提示:error
时间: 2023-04-12 13:00:35 浏览: 94
Adams2013编译C语言用户子程序生成dll超详细教程.doc
5星 · 资源好评率100%
以下是 ChatGPT 的回答:
您好!对于您的问题,可以使用以下代码实现:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c;
printf("请输入一个字符:");
scanf("%c", &c);
if (isalpha(c)) {
printf("大写字母为:%c\n", toupper(c));
} else {
printf("错误提示:输入的不是字母!\n");
}
return 0;
}
```
希望能够帮到您!
阅读全文