生活者
2016-10-06 17:09
#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;
这只是一种解法而已,应该会有更好的解法的
#include <stdio.h>
int main()
{
int sale=120; //销售业绩为120万
int year=1; //刚刚进入公司1年
//完善代码
if (sale>100)
{
if(year>=2)
{
printf("%s\n","{获得优秀员工奖");
}
printf("%s\n"," 很遗憾,期望你再接再厉 ");
}
else
{
printf("%s\n"," 很遗憾,期望你再接再厉 ");
}
return 0;
}
箭头那个地方应该加一句 printf("%s\n","很遗憾,期望你再接再厉“); 才是正确的
#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;
}
#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;
}
C语言入门
926020 学习 · 20793 问题
相似问题