mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-15 12:31:53 +00:00
14 lines
175 B
C
14 lines
175 B
C
|
#include <stdio.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
double x;
|
||
|
|
||
|
for(x=0;x<25;x++) {
|
||
|
|
||
|
printf("%.2lf %.2lf\n",x,5.0+5.0*sin(x*6.28/25));
|
||
|
|
||
|
}
|
||
|
return 0;
|
||
|
}
|