# include <stdio.h>
int main (void)
{
int sale = 120;
int year = 1;
if (sale >= 100 && year >= 2 )
printf("有资格获得优秀员工奖");
else
printf("很遗憾,期望你再接再厉");
return 0;
}
不需要条件细分的情况下,可以这样将判断条件整合起来