mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +00:00
e0febd1a90
keep making git mistakes urgh
12 lines
176 B
C
12 lines
176 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
printf("%lf\n",atan2(1,1));
|
|
printf("%lf\n",atan2(1,-1));
|
|
printf("%lf\n",atan2(-1,1));
|
|
|
|
return 0;
|
|
}
|