8 lines
90 B
C
8 lines
90 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
void main()
|
|
{
|
|
printf( "%f\n", atan(.5) );
|
|
}
|