为什么右边不出标准结果,出一堆代码也过了,我想要标准结果 我哪里无问题了
#include <stdio.h>
int main()
{
int sale=120;
int year=1;
if(sale > 100)
{
if(year >= 2)
{
printf("%s\n","恭喜你获得优秀员工奖");
}
else
{
printf("%s\n","很遗憾,期望你再接再厉");
}
else
{
printf("%s\n","很遗憾,期望你再接再厉");
}
return 0;
}
2016-04-13
举报