#include
int main() { int height = 185; if(height >=180); { printf("%s\n",小明能不能进篮球队呢? '可以' :'不可以'); return 0; } 请问这样哪里错了呢#include(stdio.h)
int main()
{
int height = 185;
if(height >=180);//if循环条件后不用写分号,后置的while需要写。
{
printf("%s\n",小明能不能进篮球队呢? '可以' :'不可以');//输出有问题。
return 0;
}
#include
int main() {
int height = 185;
if(height >=180); { printf("%s\n",小明能不能进篮球队呢? '可以' :'不可以');
return 0; }
if(height>=180);这里多了一个分号