質問編集履歴

3

<code>ボタンの使用

2019/12/09 02:39

投稿

okure_man
okure_man

スコア7

test CHANGED
File without changes
test CHANGED
@@ -21,6 +21,8 @@
21
21
  エラーは出ないが、while文がループしてくれない。
22
22
 
23
23
  ### 該当のソースコード
24
+
25
+ ```ここに言語を入力
24
26
 
25
27
  #include <bits/stdc++.h>
26
28
 
@@ -70,6 +72,8 @@
70
72
 
71
73
  }
72
74
 
75
+ ```
76
+
73
77
 
74
78
 
75
79
  ### 試したこと

2

誤字の修正、質問に関係ない部分の削除

2019/12/09 02:39

投稿

okure_man
okure_man

スコア7

test CHANGED
File without changes
test CHANGED
@@ -34,19 +34,15 @@
34
34
 
35
35
  cin >>N;
36
36
 
37
- vector<int> vec(N);
37
+ vector<int> vec(N);
38
-
39
-
40
38
 
41
39
  for(int i=0;i<N;i++){
42
40
 
43
41
  cin >> vec.at(i);
44
42
 
45
- //cout<<vec.at(i)<<endl;
46
-
47
43
  }
48
44
 
49
- int i;
45
+ int i =0;
50
46
 
51
47
  int count = 0;
52
48
 

1

for 文をwhile 文(質問原文)に訂正。

2019/12/09 02:31

投稿

okure_man
okure_man

スコア7

test CHANGED
File without changes
test CHANGED
@@ -52,7 +52,7 @@
52
52
 
53
53
 
54
54
 
55
- for(int j=0; vec.at(i) != ;j++){
55
+ while(vec.at(i) != 2){
56
56
 
57
57
  i = vec.at(i)-1;//3
58
58