求助 不知道哪里錯了
#include <stdio.h>
int main()?
{? ? ? ?
? ? int height = 185;
? ? //補全所有代碼
? ? if(height >= 180)? ?
{
? ? printf("%s\n","恭喜小明可以參加?;@球隊");
}
? ? return 0;
}
#include <stdio.h>
int main()?
{? ? ? ?
? ? int height = 185;
? ? //補全所有代碼
? ? if(height >= 180)? ?
{
? ? printf("%s\n","恭喜小明可以參加?;@球隊");
}
? ? return 0;
}
2018-10-27
舉報
2018-11-01
2018-11-02
if(height >= 180)? 前面用了中文括號
2018-10-31
return 0 上面要空行
2018-10-31
return 0 上面要空兩行
2018-10-28