用C语言编写一个程序,其功能为:从键盘上输入一个小写字母,显示这个小写字母及它所对应的大写字母以及它们的ASCEND码值
时间: 2023-05-25 09:02:40 浏览: 95
C语言程序设计-从键盘输入一个大写字母,要求改用小写字母输出;.c
```c
#include <stdio.h>
int main() {
char lowerCase;
printf("请输入一个小写字母:");
scanf("%c", &lowerCase);
char upperCase = lowerCase - 32;
printf("小写字母:%c,对应的大写字母:%c\n", lowerCase, upperCase);
printf("小写字母的 ASCII 码值为:%d,大写字母的 ASCII 码值为:%d", lowerCase, upperCase);
return 0;
}
```
阅读全文