Loading... `scanf("%d %d", &a, &b);` * **a** , **b** 都成功读入,返回值为 **2** * 只有 **a** 成功读入,返回值为 **1** * **a** 和 **b** 都未成功读入,返回值为 **0** * 遇到 **错误** 或遇到 **end of file**,返回值为 **EOF** `std::cin >> a >> b; // cin 无返回值` **连续输入参考模板:** ``` while(scanf("%d", &i) != EOF){...} while(cin >> i){...} ``` Last modification:March 27, 2022 © Allow specification reprint Like 0 如果觉得我的文章对你有用,请随意赞赏
Comment here is closed