hello.c: In function 'main': hello.c:11:68: error: stray '\357' in program printf("%s\n","恭喜您获得优秀员工奖!"); ^ hello.c:11:69: error: stray '\274' in program printf("%s\n","恭喜您获得优秀员工奖!"); ^ hello.c:11:70: error: stray '\233' in program printf("%s\n","恭喜您获得优秀员工奖!"); ^ hello.c:13:9: error: expected ';' before '}' token } ^ hello.c:16:31: warning: missing terminating " character printf("%s\n","很遗憾,期望你再接再厉); ^ hello.c:16:31: error: missing terminating " character printf("%s\n","很遗憾,期望你再接再厉); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ hello.c:17:9: error: expected expression before '}' token } ^ hello.c:17:9: error: expected ';' before '}' token
#include <stdio.h>
int main()
{
int sale=120; //销售业绩为120万
int year=1; //刚刚进入公司1年
//完善代码
if(sale>100)
{
if(year>=2){
printf("优秀员工");
}else{
printf("很遗憾,期望你再接再厉 ");
}
}else
{
printf("很遗憾,期望你再接再厉 ");
}
#include <stdio.h>
int main()
{
int sale=120; //销售业绩为120万
int year=1; //刚刚进入公司1年
//完善代码
if(sale > 100)
{
if(year >= 2)
{
printf("恭喜,获奖!!!!!\n");
}
else
{
printf("很遗憾,期望你再接再厉1\n");
}
}
else
{
printf("很遗憾,期望你再接再厉2\n");
}
return 0;
}
要输入英文符号 ; 而不是中文符号;。应该是员工奖后面的弄错了。
{}花括号内的语句要用;结尾。
很遗憾那句话的“”这个符号漏了一边的。
我大概是看到的就这些。