华师一附中OI组

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 918|回复: 0
打印 上一主题 下一主题

快读技术

[复制链接]

738

主题

1485

帖子

5420

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
5420
跳转到指定楼层
楼主
发表于 2019-11-12 15:18:52 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
  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. }
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|服务支持:DZ动力|华师一附中OI组  

GMT+8, 2024-11-1 16:19 , Processed in 0.094418 second(s), 26 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表