Blame view
lab1/pi_task.c
780 Bytes
6a98a5afa lab1 |
1 2 3 |
#include <stdio.h> #include <string.h> #include <stdlib.h> |
adfef3110 add n |
4 |
#define N 1000000000 |
6a98a5afa lab1 |
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
int main (int argc, char** argv) { int task_id; int total_tasks; long long int n; long long int i; double l_sum, x, h; n=N; if(argc<3) { fprintf(stderr,"Usage : %s task_id total_tasks [n] ",argv[0]); exit(0); } task_id = atoi(argv[1]); total_tasks = atoi(argv[2]); if(argc==4) { n = atoll(argv[3]); } fprintf(stderr, "task_id=%d total_tasks=%d n=%lld ", task_id, total_tasks, n); h = 1.0/n; l_sum = 0.0; for (i = task_id; i < n; i += total_tasks) { x = (i + 0.5)*h; l_sum += 4.0/(1.0 + x*x); } l_sum *= h; |
adfef3110 add n |
46 47 |
printf("Pi=%0.20g ", l_sum); |
6a98a5afa lab1 |
48 49 50 |
return 0; } |