回答編集履歴
1
追記
answer
CHANGED
@@ -8,4 +8,13 @@
|
|
8
8
|
wprintf(L"[%c]\n", L'あ');
|
9
9
|
return 0;
|
10
10
|
}
|
11
|
+
```
|
12
|
+
```C++
|
13
|
+
#include <iostream>
|
14
|
+
#include <locale>
|
15
|
+
|
16
|
+
int main() {
|
17
|
+
std::wcout.imbue(std::locale("japanese"));
|
18
|
+
std::wcout << L'[' << L'あ' << L"]\n";
|
19
|
+
}
|
11
20
|
```
|