哪里錯了啊
#include <stdio.h>
int main()?
{? ? ? ?
? ? int height = 185;
? ?if (height >= 180) //補全所有代碼
? ? printf("恭喜小明可以參加?;@球隊");
? ? ? ? return 0;
}
#include <stdio.h>
int main()?
{? ? ? ?
? ? int height = 185;
? ?if (height >= 180) //補全所有代碼
? ? printf("恭喜小明可以參加?;@球隊");
? ? ? ? return 0;
}
2018-09-09
舉報
2018-09-12
#include <stdio.h>
int main()?
{? ? ? ?
? ? int height = 185;
? ?if (height >= 180) //補全所有代碼
{
? ? printf("恭喜小明可以參加校籃球隊");
}
? ? ? ? return 0;
}
2018-09-09
#include <stdio.h>
int main()?
{ ? ? ??
? ? int height = 185;
? ? //補全所有代碼
? ? if(height>=180)
? ? {
? ? ? ? printf("%s\n","恭喜小明可以參加校籃球隊");
? ? }
return 0;
}
2018-09-09
可能是沒有加花括號的原因