mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-05 02:30:08 +01:00
19 lines
310 B
C
19 lines
310 B
C
#include <stdio.h>
|
|
//#include "iacaMarks.h"
|
|
|
|
int main(void){
|
|
printf("OSACA test start\n");
|
|
int i = 1;
|
|
float arr[1000];
|
|
float tax = 0.19;
|
|
arr[0] = 0;
|
|
//STARTLOOP
|
|
while(i < 1000){
|
|
arr[i] = arr[i-1]+i*tax;
|
|
i += 1;
|
|
}
|
|
|
|
printf("OSACA test end\n");
|
|
return 0;
|
|
}
|