diff --git a/docs/text/chapter-2/input.md b/docs/text/chapter-2/input.md index 2106caf..6edf817 100644 --- a/docs/text/chapter-2/input.md +++ b/docs/text/chapter-2/input.md @@ -7,7 +7,7 @@ cin 命令を用いると、コンソールから入力する事ができる。 using namespace std; int main() { - int x = 10; + int x = 10; // 下の行で上書きされるので、好きな数字を入れておけば良い cin >> x; cout << x*10 << endl;