質問編集履歴
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
高校の情報の課題なのですが、全く手も足も出ず困っています。
|
2
|
-
|
3
1
|
初心者です。お力添え頂ければ嬉しいです。
|
4
2
|
|
5
3
|
|
@@ -14,12 +12,42 @@
|
|
14
12
|
|
15
13
|
現在時刻を利用して、毎回異なる数列になるようにすること。
|
16
14
|
|
17
|
-
printf文のうち「¥n」を含むのは1つだけとする
|
15
|
+
printf文のうち「¥n」を含むのは1つだけとする
|
18
16
|
|
19
17
|
|
20
18
|
|
21
|
-
#include
|
19
|
+
#include 〈stdio.h〉
|
22
20
|
|
23
|
-
int
|
21
|
+
#include〈stdlib.h〉
|
24
22
|
|
23
|
+
#include〈time.h〉
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
int main (void)
|
28
|
+
|
25
|
-
|
29
|
+
}
|
30
|
+
|
31
|
+
int counter, num;
|
32
|
+
|
33
|
+
srand (time(0)) ;
|
34
|
+
|
35
|
+
for (counter=0; counter<10; counter++){
|
36
|
+
|
37
|
+
for (num=0; num<20; num++){
|
38
|
+
|
39
|
+
num=rand();
|
40
|
+
|
41
|
+
}
|
42
|
+
|
43
|
+
printf("¥n");
|
44
|
+
|
45
|
+
}
|
46
|
+
|
47
|
+
return 0;
|
48
|
+
|
49
|
+
}[EOF]
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
ここまで考えたのですが、20個✕10行ではなく5個✕10行になってしまいます。
|