Can you solve this equation?
摘要:
#include<stdio.h>#include<math.h>double fun(double x){ return 8*x*x*x*x + 7*x*x*x + 2*x*x + 3*x + 6 ;}int main( ){ int N,flag; double Y,a,b,mid; scanf("%d",&N); while(N--) { flag=0; scanf("%lf",&Y); a... 阅读全文
posted @ 2011-05-03 00:36 more think, more gains 阅读(236) 评论(0) 推荐(0)