加不加大括号的有影响,我这里没加大括号,也运行成功了
#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;
}
2019-10-11
举报