求大佬看下
#include<stdio.h>int main()
{
char hasBF;
printf("李华你有基友吗?(Y/N)");
scanf ("%c",&hasBF)
if ('Y'== hasBF)
{
printf("see you\n");
}
else
{
printf("好的!\n");
}
return 0;
}
为什么if('Y'==hasBF)这里会出错 上面那个scanf()后面少了分号 巴巴鲁 发表于 2020-11-24 20:29
上面那个scanf()后面少了分号
没看到,现在看到了,谢谢{:5_105:} 就少了scanf输入后面的;其他的没问题
页:
[1]