用c语言 编程从键盘输入一个小写英文字母,将其转换为大写英文字母,并将转换后的大写英文字母及其十进制的ASCII码值显示到屏幕上。 **输入提示信息**:"Please input a low-case letter from keyboard:" **输入数据格式**:"%c" **输出数据格式**:"The capital letter and its ASCII value are:%c and %d.\n" " 提示:从键盘输入一个字符可用scanf也可用getchar
时间: 2023-07-01 11:07:08 浏览: 185
以下是用C语言编写的程序:
```c
#include <stdio.h>
int main() {
char c;
printf("Please input a low-case letter from keyboard: ");
scanf("%c", &c);
if (c >= 'a' && c <= 'z') {
char capital_c = c - 32; // 转换为大写字母
printf("The capital letter and its ASCII value are: %c and %d.\n", capital_c, capital_c);
} else {
printf("You did not input a low-case letter!\n");
}
return 0;
}
```
运行效果如下:
```
Please input a low-case letter from keyboard: d
The capital letter and its ASCII value are: D and 68.
```
提示:ASCII码表中,大写字母的值比小写字母的值小32。因此,将小写字母转换为大写字母可以通过将其值减去32来实现。
相关问题
用C语言编程从键盘输入一个大写英文字母,将其转换成小写英文字母后,将转换后 小写英文字母及其十进制和ASCII码值显示训屏幕上。
您好,这是一个可以回答的问题。以下是C语言代码实现:
```c
#include <stdio.h>
int main() {
char c;
printf("请输入一个大写英文字母:");
scanf("%c", &c);
if (c >= 'A' && c <= 'Z') {
c += 32; // 转换成小写字母
printf("转换后的小写字母为:%c,十进制值为:%d,ASCII码值为:%d\n", c, c, (int)c);
} else {
printf("输入的不是大写英文字母!\n");
}
return 0;
}
```
感谢您使用C知道,有什么问题欢迎随时提出。
帮我写一个C语言,编程从键盘输入一个小写英文字母,将其转换为大写英文字母后,将转换后的大写英文字母及其十进制的ASCII码值显示到屏幕上。
好的,以下是代码:
```c
#include <stdio.h>
int main() {
char c;
printf("请输入一个小写英文字母:");
scanf("%c", &c);
if (c >= 'a' && c <= 'z') {
c -= 32; // 转换为大写字母
printf("转换后的大写字母为:%c,ASCII码值为:%d\n", c, c);
} else {
printf("输入的不是小写英文字母!\n");
}
return 0;
}
```
希望能帮到您!
阅读全文