请问大佬,哪里错了?
#include <stdio.h>
int main()
{
int height = 185;
if(height>=180)
{
printf("%S\n","恭喜小明可以参加校篮球队");
}
else
{
printf("%S\n","不可以");
}
return 0;
}
#include <stdio.h>
int main()
{
int height = 185;
if(height>=180)
{
printf("%S\n","恭喜小明可以参加校篮球队");
}
else
{
printf("%S\n","不可以");
}
return 0;
}
2018-10-16
举报