回答編集履歴
1
追記
test
CHANGED
@@ -29,3 +29,31 @@
|
|
29
29
|
}
|
30
30
|
|
31
31
|
```
|
32
|
+
|
33
|
+
[ねんのため] 全部大文字にするならtransform使うでしょけど:
|
34
|
+
|
35
|
+
```C++
|
36
|
+
|
37
|
+
#include <iostream>
|
38
|
+
|
39
|
+
#include <string>
|
40
|
+
|
41
|
+
#include <algorithm>
|
42
|
+
|
43
|
+
#include <cctype>
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
int main() {
|
48
|
+
|
49
|
+
std::string a;
|
50
|
+
|
51
|
+
std::cin >> a;
|
52
|
+
|
53
|
+
std::transform(a.begin(), a.end(), a.begin(), toupper);
|
54
|
+
|
55
|
+
std::cout << a << std::endl;
|
56
|
+
|
57
|
+
}
|
58
|
+
|
59
|
+
```
|