#include <stdio.h>#include <math.h>double f(float x){ /**/ double y; if(x<=0) y=(x+2)*exp(x); else y=(x+2)*log(2*x); /**/}void main(){ floa...
阅读全文
2008
06-06