#include <stdio.h>
int main()
{
int s=120; //销售业绩为120万
int y=1; //刚刚进入公司1年
if(s>100)
if(y>=2)
printf("恭喜您获得优秀员工奖");
}
else(y<2)
printf("很遗憾,期望您再接再厉");
else
return 0;
你重复了 中间那个 else不要(year<2)就可以了
else后面不需要有条件的