哪位大佬看看哪里錯了
#include <stdio.h>
int main()?
{
? ? int sale=120; //銷售業(yè)績?yōu)?20萬
? ? int year=1; //剛剛進入公司1年
? ? //完善代碼
? ? if(sale>100)
? ? {
? ? ? ? if(year>=2)
? ? ? ? {
? ? ? ? ? ? printf("%s\n","恭喜你");
? ? ? ? }
? ? }
? ? else
? ? {
? ? ? ? printf("%s\n","很遺憾,期待你再接再厲");
? ? }
? ? return 0;
2019-10-28
你在最后的時候忘了打}兄弟