From 0dc39f40ff5463ed1a7506c974e6b9fbf3ad5976 Mon Sep 17 00:00:00 2001 From: ZOI-dayo <64856587+ZOI-dayo@users.noreply.github.com> Date: Thu, 2 May 2024 13:49:23 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20cin=E3=81=A7=E5=8F=97=E3=81=91=E5=8F=96?= =?UTF-8?q?=E3=82=8B=E3=81=A8=E3=81=8D=E3=80=81=E5=88=9D=E6=9C=9F=E5=80=A4?= =?UTF-8?q?=E3=81=AB=E6=84=8F=E5=91=B3=E3=81=8C=E3=81=AA=E3=81=84=E3=81=93?= =?UTF-8?q?=E3=81=A8=E3=82=92=E6=98=8E=E8=A8=98=20(#19)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/text/chapter-2/input.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;