就是不通过啊
#include <stdio.h>
int main()
{
int sale = 120; //销售业绩为120万
int year = 1; //刚刚进入公司1年
//完善代码
if (sale > 100)
{
if (year >= 2)
{
printf("%s\n", "恭喜你中奖了");
}
else
{
printf("%s\n", "很遗憾,期望你再接再厉");
}
}
else
{
printf("%s\n", "很遗憾,期望你再接再厉");
}
return 0;
}
你多弄了个 return 0;
很遗憾后面那个逗号要用全角的