这又问题吗
#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","很抱歉,期待你再接再厉");
}
return 0;
}