回答編集履歴
1
追記
answer
CHANGED
@@ -2,4 +2,18 @@
|
|
2
2
|
|
3
3
|
```C++
|
4
4
|
int Key[256] = {};
|
5
|
+
```
|
6
|
+
|
7
|
+
---
|
8
|
+
|
9
|
+
ひょっとして,こうかよ!?
|
10
|
+
|
11
|
+
```C++
|
12
|
+
class Input
|
13
|
+
{
|
14
|
+
public:
|
15
|
+
void ResetToZero(){ *this = Input(); } //オラァ!
|
16
|
+
public:
|
17
|
+
int Key[256] = {};
|
18
|
+
};
|
5
19
|
```
|