質問編集履歴
3
test
CHANGED
File without changes
|
test
CHANGED
@@ -33,3 +33,55 @@
|
|
33
33
|
こういったプログラムを作りたいのですがどうしたらよろしいですか?
|
34
34
|
|
35
35
|
c言語です。
|
36
|
+
|
37
|
+
#define _CRT_SECURE_NO_WARNINGS
|
38
|
+
|
39
|
+
#include<stdio.h>
|
40
|
+
|
41
|
+
int main(void) {
|
42
|
+
|
43
|
+
int i, j, a = 1,b;
|
44
|
+
|
45
|
+
int tensu1[9][15];
|
46
|
+
|
47
|
+
int tensu2[9][15];
|
48
|
+
|
49
|
+
int k[9][15];
|
50
|
+
|
51
|
+
for (i = 0; i < 8; i++) {
|
52
|
+
|
53
|
+
for (j = 1; j < 15; j++) {
|
54
|
+
|
55
|
+
for (i = 0; i < 8; i++)
|
56
|
+
|
57
|
+
a = a * i;
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
k[i][j] = a % 15;
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
for (i = 0; i < 9; i++) {
|
68
|
+
|
69
|
+
for (j = 0; j < 14; j++) {
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
printf("[k=%d]\n", i + 0, k[i][j]);
|
74
|
+
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
}
|
80
|
+
|
81
|
+
return 0;
|
82
|
+
|
83
|
+
}
|
84
|
+
|
85
|
+
ここまで書きました。
|
86
|
+
|
87
|
+
足らない文教えてください
|
2
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
1
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|