質問編集履歴

4

ああああああああああああ

2017/10/05 08:24

投稿

mercurian-teto
mercurian-teto

スコア75

test CHANGED
File without changes
test CHANGED
@@ -148,9 +148,21 @@
148
148
 
149
149
  だれか解決策をお願いします。
150
150
 
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
151
163
  ---------------------------------------------------
152
164
 
153
-
165
+ 編集しました
154
166
 
155
167
  ```C
156
168
 

3

あああああああああああああ

2017/10/05 08:24

投稿

mercurian-teto
mercurian-teto

スコア75

test CHANGED
File without changes
test CHANGED
@@ -152,8 +152,6 @@
152
152
 
153
153
 
154
154
 
155
- 編集しました。
156
-
157
155
  ```C
158
156
 
159
157
  #include "stdafx.h"

2

ツールを使いたい

2017/10/05 08:23

投稿

mercurian-teto
mercurian-teto

スコア75

test CHANGED
File without changes
test CHANGED
@@ -148,6 +148,8 @@
148
148
 
149
149
  だれか解決策をお願いします。
150
150
 
151
+ ---------------------------------------------------
152
+
151
153
 
152
154
 
153
155
  編集しました。

1

修正したプログラムをツールを使って追加しておきたかった

2017/10/05 08:22

投稿

mercurian-teto
mercurian-teto

スコア75

test CHANGED
File without changes
test CHANGED
@@ -147,3 +147,41 @@
147
147
  調べても調べても解決に至る情報がありません。
148
148
 
149
149
  だれか解決策をお願いします。
150
+
151
+
152
+
153
+ 編集しました。
154
+
155
+ ```C
156
+
157
+ #include "stdafx.h"
158
+
159
+
160
+
161
+
162
+
163
+ int main()
164
+
165
+ {
166
+
167
+ double vx;
168
+
169
+
170
+
171
+ printf("実数を入力して下さい。\n");
172
+
173
+ printf("実数vx=\n");
174
+
175
+ scanf_s("%lf", &vx);
176
+
177
+ printf("あなたは%fと入力しましたね\n", vx);
178
+
179
+ getchar();
180
+
181
+
182
+
183
+
184
+
185
+ }
186
+
187
+ ```