摘要: 例子 1、scanf VS. getchar #include <cstdio> #include <cstring> int main() { char s[20]; while (scanf("%s", s) == 1) { printf("echo: %s\n", s); } // 但是 sc 阅读全文
posted @ 2020-05-04 10:36 xkfx 阅读(179) 评论(0) 推荐(0) 编辑