#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; 这个地方不能用=号,应该是return 0;
中间的第一个else用else if试试