请哪位帮我看一下!我这个程序哪里有问题?求教了!!!谢谢
#include "stdafx.h"#include <stdio.h>
#include <math.h>
int main(void)
{
double x,y;
scanf("%f",&x);
if(x<0){
y=pow(x,5)+2*x+1/x;
}
else
{
y=sqrt(x);
}
printf("y=f(%.2f)\n",y);
return 0;
}
我怎么运行输入数,输出来的结果都有问题。。。。