标签:情况 大于 相同 不同 个数 公式 ret int stream
2 1 8 4 4 7Sample Output
0 1 0
直接带公式计算,其它的我也不懂
#include<stdio.h> #include<math.h> #include<iostream> using namespace std; int main() { double a,b; while(scanf("%lf%lf",&a,&b)!=EOF) { double t; if(a>b) { t=b;b=a;a=t; } t=b-a; if((int)(t*(1+sqrt(5))/2)==(int)a) printf("0\n"); else printf("1\n"); } return 0; }
标签:情况 大于 相同 不同 个数 公式 ret int stream
原文地址:http://www.cnblogs.com/xzxj/p/7236431.html