正数快读本地能过洛谷全wa求调
  • 板块学术版
  • 楼主oiler153
  • 当前回复11
  • 已保存回复11
  • 发布时间2023/4/9 08:31
  • 上次更新2023/10/23 18:59:21
查看原帖
正数快读本地能过洛谷全wa求调
804759
oiler153楼主2023/4/9 08:31
int x,w;
char ch;
int read() {
  x = 0;
ch=getchar();
  while (ch >= '0' && ch <= '9') {
    x = x * 10 + ch - '0';
    ch = getchar();
  }
  return x;
}
2023/4/9 08:31
加载中...