题目描述
输入一个小写字母,输出其对应的大写字母。例如输入 q[回车] 时,会输出 Q。
输入格式
无
输出格式
无
输入输出样例
输入 #1复制
q
输出 #1复制
Q
代码1:(自写转换的地方)
#include<iostream>
#include<string>
using namespace std;
int main()
{
char c;
cin >> c;
cout << char(c - 32);//这里要强制转成char型,不然输出的是int型
return 0;
}
代码2:(这里输出要按两次enter键,但也能通过)
#include<iostream>
#include<string>
using namespace std;
int main()
{
char c;
cin >> c;
cout << (char)toupper(c);//使用自带的函数
return 0;
}