這個(gè)哪里錯(cuò)了?
#include <stdio.h>
int main()
{
??? int sale=120; //銷(xiāo)售業(yè)績(jī)?yōu)?20萬(wàn)
??? int year=1; //剛剛進(jìn)入公司1年
??? //完善代碼
??? if(sale>100&&year>2)
??? {
??????? printf("恭喜你獲得優(yōu)秀員工獎(jiǎng)");??
??? }
??? else
??? {
??????? printf("很遺憾,期望你再接再厲");
??? }
??? return 0;
}
2019-10-15
#include <stdio.h>
int main()
{
??? int sale=120; //銷(xiāo)售業(yè)績(jī)?yōu)?20萬(wàn)
??? int year=1; //剛剛進(jìn)入公司1年
??? //完善代碼
??? if (sale>100)
??? {
??????? if(year>=2)
??????? {
??????????? printf("獲得優(yōu)秀員工獎(jiǎng)");
??????? }
??????? else
??????? {printf("很遺憾,期望你再接再厲");}
??? }
??? else
??? {
??????? printf("很遺憾,期望你再接再厲");
??? }
???
??? return 0;
}
2019-10-15
分號(hào)錯(cuò)了,最好用if嵌套,不要用邏輯與符號(hào),按要求來(lái)