Description
 (其中0 <= x <= 1) 公式(1)
(其中0 <= x <= 1) 公式(1) 
       Input
Output
#include <stdio.h>
#include <string.h>
int main()
{
	long long a, m, n, dd;
	while(scanf("%lld", &a)!=EOF)
	{
	dd=a*a+1;
	for(m=a; m>=1; m--)
	{
		if(dd%m==0)
		{
			break;
		}
	}
	n=dd/m;
	printf("%ld\n", 2*a+m+n );
	}
	return 0;
}
这是一位同胞的解释!可供参考!

POJ 1183 反正切函数的应用,布布扣,bubuko.com
原文:http://www.cnblogs.com/yspworld/p/3876383.html