質問編集履歴
1
コードの未挿入
test
CHANGED
File without changes
|
test
CHANGED
@@ -7,3 +7,53 @@
|
|
7
7
|
配列を用いて作ってみたのですが上手くいきませんでした。
|
8
8
|
|
9
9
|
もしよろしければご協力よろしくお願いします。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
コードは以下の通りで、if文の条件式から分からなくなりました。
|
14
|
+
|
15
|
+
```
|
16
|
+
|
17
|
+
#include <stdio.h>
|
18
|
+
|
19
|
+
#include <math.h>
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
#define N 10
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
int main(void)
|
28
|
+
|
29
|
+
{
|
30
|
+
|
31
|
+
int i, j;
|
32
|
+
|
33
|
+
double x[N], y[N], d[N], min;
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
for(i = 0; i < N; i++) {
|
38
|
+
|
39
|
+
printf("x[%1d] = ? ", i);
|
40
|
+
|
41
|
+
scanf("%lf", &x[i]);
|
42
|
+
|
43
|
+
printf("y[%1d] = ? ", i);
|
44
|
+
|
45
|
+
scanf("%lf", &y[i]);
|
46
|
+
|
47
|
+
d[i] = sqrt(x[i] * x[i] + y[i] * y[i]);
|
48
|
+
|
49
|
+
if (d[i])
|
50
|
+
|
51
|
+
}
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
return 0;
|
56
|
+
|
57
|
+
}
|
58
|
+
|
59
|
+
```
|