这个程序运行的还是有问题啊!TT
我已经修改了,但是它运行的还是和我想象的不一样,根本就计算不了啊~
#include<stdio.h>
#include<math.h>
void main()
{
double x,y;
printf("Enter x:");
scanf("%d",&x);
if(0<x<1)
y=exp(sqrt(x))-1;
else if(x>=3&&x<=4)
y=fabs(x)+2;
else
y=sin(x*x);
printf("y=%d",y);
}
[此贴子已经被作者于2007-3-18 0:12:29编辑过]