题目描述
读入一些字符串,将其中的小写字母转成大写字母(其他字符不变)。
输入
输入为多行,每行为一个字符串,字符串只由字母和数字组成,长度不超过80。
输出
对于每行输入,输出转换后的字符串。
#include<bits/stdc++.h>
using namespace std;
int main() {
string a;
int b, i;
while (cin >> a) {
b = a.length();
for (i = 0; i < b; i++) {
if (a[i] >= ‘a’ && a[i] <= ‘z’) {
a[i] = a[i] - 32;
}
}
cout << a << endl;
}
return 0;
}