大小写转换
还是跟ASCII码有关的二级题目,大小写转换。
BCQM3043
题目要求
描述
输入一个小写字母,则变为大写输出。
输入
输入为一个小写字符。
输出
对应的大写字母。
输入样例
a
输出样例
A
题目分析
根据ASCII规则,大小写字母之间的ASCII码数值相差32,利用这个特性,直接小写字符 - 32,即可得到对应大写字母的ASCII码。
代码参考
#include <iostream>
using namespace std;
int main() {
char a;
cin >> a;
int ans;
ans = a - 32;
cout << (char)ans;
return 0;
}
{% include custom/custom-post-content-footer.md %}
所有代码已上传至Github:https://github.com/lihongzheshuai/yummy-code
“luogu-”系列题目可在 洛谷题库 在线评测。
“bcqm-”系列题目可在 编程启蒙题库 在线评测。
GESP/CSP 认证学习微信公众号

Last updated on