摘要: int main() { char b; scanf("%c", b); return 0; } 执行后会出现错误 需要把scanf函数中的b改为&b,如下 int main() { char b; scanf("%c", &b); return 0; } 阅读全文
posted @ 2020-05-25 17:48 hentai秃头大叔 阅读(4887) 评论(0) 推荐(0)