为什么会输出错误,标点也都试了
#include <stdio.h>
int main()
{
int sale=120; //销售业绩为120万
int year=1; //刚刚进入公司1年
//完善代码
if (sale>100)
{
if(year>=2)
{
printf("你已具备获得优秀员工奖的资格");
}
else
{
printf("很遗憾,期待你再接再厉");
}
}
else
{
printf("很遗憾,期待你再接再厉");
}
return 0;
}
#include <stdio.h>
int main()
{
int sale=120; //销售业绩为120万
int year=1; //刚刚进入公司1年
//完善代码
if (sale>100)
{
if(year>=2)
{
printf("你已具备获得优秀员工奖的资格");
}
else
{
printf("很遗憾,期待你再接再厉");
}
}
else
{
printf("很遗憾,期待你再接再厉");
}
return 0;
}
2019-09-21
举报