#include <stdio.h>
int main()
{
int height = 185;
//补全所有代码
if(height >= 180)
{
printf("恭喜小明可以参加校篮球队\n");
}
return 0;
}
还是以这个为准:
#include <stdio.h>
int main()
{ char a[]="恭喜小明可以参加校篮球队";
int height = 185;
if(height>=180)
{
printf("%s",a);
}
return 0;
}
多了一个return 0;复制多了一次,淦
还可以这么做:
#include <stdio.h>
main()
{ char a[]="恭喜小明可以参加校篮球队";
int height = 185;
if(height>=180)
{
printf("%s",a);
}
return 0;
}
return 0;
}
试试看
;(中);(英)
不,我后边发现我是中英的分号搞错了
你是改了题目的代码大小写错了像我原代码改回来
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;
}
就这,没必要加上花括号,这个题目很蛇皮