C语言试编写一个程序,输入一个小写字母,输出其大写字母
时间: 2024-03-02 17:51:12 浏览: 152
以下是 C 语言代码实现:
```c
#include <stdio.h>
int main() {
char ch;
// 输入一个小写字母
printf("请输入一个小写字母:\n");
scanf("%c", &ch);
// 转换成大写字母
ch = ch - 'a' + 'A';
// 输出大写字母
printf("对应的大写字母是:%c\n", ch);
return 0;
}
```
运行结果示例:
```
请输入一个小写字母:
c
对应的大写字母是:C
```
注意:本题中要求输入的是一个小写字母,如果输入的不是小写字母,程序可能会出现错误。另外,将小写字母转换成大写字母时,可以使用字符编码的差值来实现,也可以使用字符的 ASCII 码值。
相关问题
c语言分类统计字符个数,输入一行文字,统计其中的大写字母、小写字母、 空格、数字以及其它字符各有多少。试编写相应程序。
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char line[100];
int capitals = 0, lowers = 0, spaces = 0, digits = 0, others = 0;
fgets(line, 100, stdin);
for (int i = 0; line[i] != '\0'; i++) {
if (isupper(line[i]))
capitals++;
else if (islower(line[i]))
lowers++;
else if (isspace(line[i]))
spaces++;
else if (isdigit(line[i]))
digits++;
else
others++;
}
printf("Capitals: %d\n", capitals);
printf("Lowers: %d\n", lowers);
printf("Spaces: %d\n", spaces);
printf("Digits: %d\n", digits);
printf("Others: %d\n", others);
return 0;
}
```
c语言:分类统计字符个数:输入一行文字,统计其中的大写字母、小写字母、空格、数字以及其他字符各有多少。试编写相应程序。
以下是C语言的代码实现:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c;
int upper = 0, lower = 0, space = 0, digit = 0, other = 0;
printf("请输入一行文字:\n");
while ((c = getchar()) != '\n') {
if (isupper(c)) {
upper++;
} else if (islower(c)) {
lower++;
} else if (isspace(c)) {
space++;
} else if (isdigit(c)) {
digit++;
} else {
other++;
}
}
printf("大写字母:%d\n", upper);
printf("小写字母:%d\n", lower);
printf("空格:%d\n", space);
printf("数字:%d\n", digit);
printf("其他字符:%d\n", other);
return 0;
}
```
运行程序后,会提示用户输入一行文字,然后通过循环逐个读取字符并根据其类型进行计数,最后输出各类字符的数量。其中,`isupper`、`islower`、`isspace` 和 `isdigit` 都是C语言中的字符判断函数。
阅读全文