为什么怎么测试都是 66 分,纳闷了http://www.wikioi.com/problem/1203/ ·
的有关信息介绍如下:

//修改成这样试试#include #include #include #include #include void answer(float a,float b){if(abs(a-b)<=(int)(1e-08)) printf("yes");else printf("no");}int main(){ float a,b; scanf("%f",&a); scanf("%f",&b); answer (a,b); return 0;}