]> AND Private Git Repository - these_gilles.git/blob - DOCS/paper_snake_gpu/step1.c
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
19 oct
[these_gilles.git] / DOCS / paper_snake_gpu / step1.c
1 #include <stdio.h>
2
3 int main(int argc, char **argv){
4
5   int i,H = atoi(argv[1]);
6   double nb = 0.0;
7
8   for(i=0; i<H; i++ ) nb += (H-i);
9
10   printf("nb = %f\n",nb);
11   return 0;
12 }