华师一附中OI组

标题: 快读技术 [打印本页]

作者: admin    时间: 2019-11-12 15:18
标题: 快读技术
  1. #include <cstdio>
  2. #include <cstdlib>
  3. #include <algorithm>
  4. using namespace std;

  5. int getint()
  6. {
  7.         int res = 0;
  8.         char ch = getchar();
  9.         while (ch < '0'  ||  ch > '9')
  10.                 ch = getchar();
  11.         while (ch >= '0'  &&  ch <= '9')
  12.                 res = res * 10 + ch - '0', ch = getchar();
  13.         return res;
  14. }
  15. int main()
  16. {
  17.         freopen("input.txt", "r", stdin);
  18.         freopen("output.txt", "w", stdout);
  19.         // getchar 是从 stdin 读入的,必须用 freopen 加载输入文件

  20.         int n = getint();
  21.         int m = getint();
  22.         printf("%d %d\n", n, m);
  23. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2