问答详情
源自:4-2 分支结构之简单if-else语句

感觉没错啊。。。

#include"stdio.h"

#include"stdlib.h"

int main()

{

int height = 185;

if(height >= 180)

{

printf("%s\n","小明可以加入校篮球队");

else

printf("%s\n","小明不可以加入校篮球队");

}

system("pause");

return 0;

}


提问者:时光里的梦 2015-02-11 19:32

个回答

  • derrick9006
    2015-02-11 23:18:36

    if了之后要关闭,您少放了“}”

  • Fiona0126
    2015-02-11 20:07:05

    1. if大括号里面莫名的else

    2. 不要使用system("pause");

  • 时光里的梦
    2015-02-11 19:33:53

    直接无法运行。。。 不是height赋值大小问题。