摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2199/* 二分查找;*/#include #include using namespace std; double fun(double x) { return 8*pow(x,4.0)+7*pow(x,3.0)+2*pow(x,2.0)+3*x+6; } double l,m,r,y; int main() { int t; scanf("%d",&t); while(t--) { scanf("%lf",&y); if(fu... 阅读全文
posted @ 2013-03-09 13:52 简洁是智慧的灵魂 阅读(196) 评论(0) 推荐(0)