赞
踩
- #include <stdio.h>
-
- int main(void)
- {
- // ASCII码表中:
- // A-Z: 65-90
- // a-z: 97-122
-
- char cLetter;
- char cDifference = 'a' - 'A'; // 计算出大写字母与小写字母的ASCII值的差
-
- printf("请输入要转换的字母: ");
- scanf_s(" %c", &cLetter);
-
- if (cLetter - 'Z' <= 0) // 如果不是大写字母,则进行转换成小写字母
- cLetter += cDifference;
- else // 如果是小写,则进行转换成大写字母
- cLetter -= cDifference;
-
- printf("转换后的字母: %c", cLetter);
- printf("\n");
-
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。