慕瓜1140529
2017-09-08 17:21
#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;
}
似乎并没有错
中间少了else执行代码块步骤
#include "stdafx.h"
#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", "很遗憾,期望你再接再厉");
}
else
{
printf("%s\n","很遗憾,期望你再接再厉")
}
}
return 0;
C语言入门
926220 学习 · 20797 问题
相似问题