快速读入版a+b

Posted dong-ji-yuan

tags:

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

原理很简单,就是用最快的getchar来读入int。

#include<bits/stdc++.h>//万能头文件
using namespace std;
int read()
{
	char xyds=getchar();
	int x=0,f=1;
	while(xyds<‘0‘||xyds>‘9‘){
		if(xyds==‘-‘) f=-1;//负数
		xyds=getchar();
	}
	while(xyds>=‘0‘&&xyds<=‘9‘){
		x=x*10+(xyds-‘0‘);//增加一位
		xyds=getchar();
	}
	return x*f;
}
int main()
{
	int a,b;
	a=read(),b=read();
	cout<<a+b;//输出的就不弄了
	return 0;
}

  

以上是关于快速读入版a+b的主要内容,如果未能解决你的问题,请参考以下文章

快速读入介绍

片段 A 的列表视图中的片段 B 中的新列表视图,单击 A 的列表项

apriori片段代码

模板快速读入

[vscode]--HTML代码片段(基础版,reactvuejquery)

快速读入