为啥运行成功输出错误
#include <stdio.h>
int main()
{
int height = 185;
if(height >= 180)
{
printf("%s\n","恭喜小明可以参加篮球队");
}
return 0;
}
#include <stdio.h>
int main()
{
int height = 185;
if(height >= 180)
{
printf("%s\n","恭喜小明可以参加篮球队");
}
return 0;
}
2023-01-07
举报