各位大佬,请求指一下错误
#include <stdio.h>
int main()
{
int height = 185;
if(height>=180)
{
printf("%s","入选篮球队");
}
else
{
printf("%s","无法入选篮球队");
}
return 0;
}
#include <stdio.h>
int main()
{
int height = 185;
if(height>=180)
{
printf("%s","入选篮球队");
}
else
{
printf("%s","无法入选篮球队");
}
return 0;
}
2020-11-22
举报