输入一个字符,如果输入字符是小写字母(a-z),则程序以大写字母打印;如果输入字符是大写字母(A-Z),则程序以小写字母打印。 如果字符是数字(0-9),程序将打印其值的平方。 用c语言
时间: 2024-09-18 17:08:41 浏览: 19
java实现统计字符串中大写字母,小写字母及数字出现次数的方法示例
这个功能可以使用C语言的基本条件控制结构如if-else和switch来实现。下面是一个简单的示例程序:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char input;
printf("请输入一个字符: ");
scanf("%c", &input);
if (islower(input)) { // 判断是否为小写字母
input = toupper(input); // 转换为大写字母
printf("大写形式: %c\n", input);
} else if (isupper(input)) { // 判断是否为大写字母
input = tolower(input); // 转换为小写字母
printf("小写形式: %c\n", input);
} else if (isdigit(input)) { // 判断是否为数字
int value = input - '0'; // 将字符转为数值
printf("数字平方: %d\n", value * value);
} else {
printf("无效字符\n");
}
return 0;
}
```
在这个程序中,`islower()`、`isupper()` 和 `isdigit()` 函数分别用于判断字符的类型,`toupper()` 和 `tolower()` 用于转换字母的大小写。当你运行这个程序并输入相应字符后,它会按照预设规则进行相应的处理。
阅读全文