質問編集履歴

1

自分で作った途中までのプログラムをいれました。

2020/06/09 02:31

投稿

chika1
chika1

スコア2

test CHANGED
File without changes
test CHANGED
@@ -13,3 +13,33 @@
13
13
  という問題なのですが、while文の中がわかりません。
14
14
 
15
15
  ヒントだけでもいいので教えてください。
16
+
17
+
18
+
19
+ 自分なりに作った部分です。
20
+
21
+ #include <stdio.h>
22
+
23
+
24
+
25
+ int main(void) {
26
+
27
+ int a=3,b,c; /*a(0)をa,a(n)をb,a(n+1)をcとする。*/
28
+
29
+ while(1)
30
+
31
+ {
32
+
33
+
34
+
35
+
36
+
37
+ c=2*b-1;
38
+
39
+ if(c>=10000)break;
40
+
41
+ }
42
+
43
+ return 0;
44
+
45
+ }