質問編集履歴
2
サイトURLの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
|
-
paiza.ioでdrand48()を実行したいです。
|
3
|
+
paiza.io[こちらのサイト](https://paiza.io/ja/projects/new)でdrand48()を実行したいです。
|
4
4
|
|
5
5
|
### 発生している問題・エラーメッセージ
|
6
6
|
|
1
具体的なプログラムの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,3 +13,67 @@
|
|
13
13
|
r =drand48();
|
14
14
|
|
15
15
|
```
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
###追記
|
20
|
+
|
21
|
+
参考プログラムを作成いたしました。
|
22
|
+
|
23
|
+
drand48()で5回乱数を発生させるプログラムを記述いたしました。こちらをpaiza.ioで実行させるためにはどうすれば良いでしょうか?
|
24
|
+
|
25
|
+
```C
|
26
|
+
|
27
|
+
#include <stdio.h>
|
28
|
+
|
29
|
+
#include <stdlib.h>
|
30
|
+
|
31
|
+
#include <time.h>
|
32
|
+
|
33
|
+
int main()
|
34
|
+
|
35
|
+
{
|
36
|
+
|
37
|
+
double x;
|
38
|
+
|
39
|
+
int i1;
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
srand48(time(0)); // 初期化
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
for (i1 = 0; i1 < 5; i1++) {
|
48
|
+
|
49
|
+
x = drand48(); // 乱数の生成
|
50
|
+
|
51
|
+
printf("%f\n", x);
|
52
|
+
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
return 0;
|
58
|
+
|
59
|
+
}
|
60
|
+
|
61
|
+
```
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
###追記したプログラムでのエラーメッセージ
|
66
|
+
|
67
|
+
```
|
68
|
+
|
69
|
+
Main.c:9:2: warning: implicit declaration of function 'srand48' is invalid in C99 [-Wimplicit-function-declaration]
|
70
|
+
|
71
|
+
srand48(time(0)); // 初期化
|
72
|
+
|
73
|
+
^
|
74
|
+
|
75
|
+
Main.c:12:8: warning: implicit declaration of function 'drand48' is invalid in C99 [-Wimplicit-function-declaration]
|
76
|
+
|
77
|
+
x = drand48(); // 乱数の生成
|
78
|
+
|
79
|
+
```
|