问一下C语言选择结构程序设计的问题(已编好程序)
#include<stdio.h>main(){intx,y;printf("pleaseinputx:");scanf("%d",&x);if(x<=-10)y=2*x...
#include <stdio.h>
main()
{
int x,y;
printf("please input x:");
scanf("%d",&x);
if(x<=-10)
y=2*x;
else
if(x<=0)
y=2+x;
else
if(x<=10)
y=x-2;
else
y=x/10;
printf("The result is:\n",y);
return 0;
}
我用VC++6输入后,没有错误,但是输入数值,没有结果!求教哪里错啦?谢谢拉! 展开
main()
{
int x,y;
printf("please input x:");
scanf("%d",&x);
if(x<=-10)
y=2*x;
else
if(x<=0)
y=2+x;
else
if(x<=10)
y=x-2;
else
y=x/10;
printf("The result is:\n",y);
return 0;
}
我用VC++6输入后,没有错误,但是输入数值,没有结果!求教哪里错啦?谢谢拉! 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询