读入优化 && 输出优化

Posted aiyi2000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读入优化 && 输出优化相关的知识,希望对你有一定的参考价值。

qwq算是一个板子随笔吧

快读我在某大佬的博客中找到了更短的代码

但是这个写习惯了就改不了了qwq

其实是我不想改

废话好多

直接贴代码

 1 //读入优化 
 2 inline int read(){
 3     char ch, c;
 4     int res;
 5     while (ch = getchar(), ch < 0 || ch > 9) c = ch;
 6     res = ch - 48;
 7     while (ch = getchar(), ch >= 0 && ch <= 9)
 8     res = (res << 3) + (res << 1) + ch - 48;
 9     if (c == -) res = -res;
10     return res;
11 }
12 //输出优化
13 void write(int x){
14     if (x < 0) putchar(-), x = -x;
15     if (x > 9) write(x / 10);
16     putchar(x % 10 + 0);
17     return;
18 } 

然后在使用的时候

1 int main(){
2     int n;
3     n = read();
4     write(n);
5 }

注意别忘了头文件名

#include <cstdio>

不许说我大括号不换行差评

 

以上是关于读入优化 && 输出优化的主要内容,如果未能解决你的问题,请参考以下文章

读入优化&输出优化

读入优化&输出优化

读入/输出优化

墙裂推荐读入优化和输出优化

读入输出优化

读入输出优化模板