求大神指導(dǎo)
#include <stdio.h>
int main()
{??????
??? int height = 185;
??? //補(bǔ)全所有代碼
??? if(height>=180)
????? {
????????? printf("%s\n","恭喜小明可以參加?;@球隊(duì)");
????? }
?return 0;
}
哪錯(cuò)了呢 ? 求指導(dǎo)
#include <stdio.h>
int main()
{??????
??? int height = 185;
??? //補(bǔ)全所有代碼
??? if(height>=180)
????? {
????????? printf("%s\n","恭喜小明可以參加?;@球隊(duì)");
????? }
?return 0;
}
哪錯(cuò)了呢 ? 求指導(dǎo)
2017-12-22
舉報(bào)
2017-12-30
第八行的分號(hào)打錯(cuò)了,應(yīng)該是英文半角狀態(tài)下的分號(hào);
2017-12-22
#include <stdio.h>
int main()
{??????
??? int height = 185;
??? //補(bǔ)全所有代碼
??? if (height>=180)
??? {
??????? printf("%s\n","恭喜小明可以參加?;@球隊(duì)");
??? }
???
???
?return 0;
}
2017-12-22
#include <stdio.h>
int main()
{??????
??? int height = 185;
??? //補(bǔ)全所有代碼
??? if (height>=180)
??? {
??????? printf("%s\n","恭喜小明可以參加?;@球隊(duì)");
??? }
???
???
?return 0;
}