if(sale > 100&&year >= 2) 为什么这样输显示输入错误?
#include
int main() { int sale=120; //销售业绩为120万 int year=1; //刚刚进入公司1年 //完善代码 if(sale > 100&&year >= 2)//这样输运行结果是对的,但是显示输入错误为什么? { printf("恭喜你业绩达标,你获得了优秀员工将"); } else { printf("很遗憾,期望你再接再厉"); } return 0; }搜索
复制