/ Published in: C
e.g.
<pre>
$ ./a.out 4 0
1762001.350586 827080.943359 1642278.102539 1674450.112305
</pre>
<pre>
$ ./a.out 4 0
1762001.350586 827080.943359 1642278.102539 1674450.112305
</pre>
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#include <stdio.h> #include <stdlib.h> #define USAGE "Usage: %s NUMBER SEED\n" int main(int argc, char ** argv) { int i, n, seed; if(argc!=3){ } return 0; }