摘要: Can you solve this equation?#include #include #include using namespace std; double comp(double x) { return ( 8*pow(x,4) + 7*pow(x,3) + 2*pow(x,2) + 3*x + 6 ); } int main() { int t; double Y; scanf("%d",&t); while( t-- && scanf("%lf",&Y) ) { if( comp(0.0) > Y || 阅读全文
posted @ 2013-04-23 14:18 VeryBigMan 阅读(139) 评论(0) 推荐(0) 编辑