質問編集履歴

1

誤字

2021/11/19 07:53

投稿

mkn66
mkn66

スコア41

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- void fun1 (int a[n])
29
+ void fun1 (int a[n]) /*カードを決める関数です*/
30
30
 
31
31
  {
32
32
 
@@ -44,7 +44,7 @@
44
44
 
45
45
 
46
46
 
47
- void fun2 (int *a,int *c,int *eat, int *bite)
47
+ void fun2 (int *a,int *c,int *eat, int *bite) /*カードがあっているかを確認する関数です*/
48
48
 
49
49
  {
50
50
 
@@ -72,7 +72,7 @@
72
72
 
73
73
 
74
74
 
75
- void fun3(int *c,int m)
75
+ void fun3(int *c,int m) /*入力したカードに重なりがないかを確認する関数です*/
76
76
 
77
77
  {
78
78
 
@@ -154,15 +154,13 @@
154
154
 
155
155
  *bite1 = 0;
156
156
 
157
- printf("%dEAT,%dBITE",eat,bite);
158
-
159
157
  printf("%sさんは%sさんのカードを当ててください\n",p,q);
160
158
 
161
- fun3(n,m);
159
+ fun3(n,m);/*カードを入力して同じ数字がないかを確認*/
162
160
 
163
161
  if(c[0] == -1){break;}
164
162
 
165
- fun2 (b,c,eat1,bite1);
163
+ fun2 (b,c,eat1,bite1);/*カードの比較*/
166
164
 
167
165
  printf("%dEAT,%dBITE",eat,bite);
168
166
 
@@ -174,11 +172,11 @@
174
172
 
175
173
  printf("\n%sさんは%sさんのカードを当ててください\n",q,p);
176
174
 
177
- fun3(c,m);
175
+ fun3(c,m);  /*カードを入力して同じ数字がないかを確認*/
178
176
 
179
177
  if(c[0] == -1){break;}
180
178
 
181
- fun2(a,c,eat1,bite1);
179
+ fun2(a,c,eat1,bite1);/*カードの比較*/
182
180
 
183
181
  printf("%dEAT,%dBITE\n",eat,bite);
184
182