用C++写一个A+B Problem(快读快写)
时间: 2024-02-07 17:02:54 浏览: 104
c语言作业题目A+B问题
以下是使用 C++ 编写的 A+B Problem 的代码(使用快读快写加速输入输出):
```c++
#include <iostream>
using namespace std;
inline int read() {
int x=0, f=1;
char ch=getchar();
while(ch<'0' || ch>'9') {
if(ch=='-') f=-1;
ch=getchar();
}
while(ch>='0' && ch<='9') {
x=x*10+ch-'0';
ch=getchar();
}
return x*f;
}
inline void write(int x) {
if(x<0) putchar('-'), x=-x;
if(x>9) write(x/10);
putchar(x%10+'0');
}
int main() {
int a = read();
int b = read();
write(a + b);
putchar('\n');
return 0;
}
```
这个程序使用快读快写优化了输入输出,从标准输入中读取两个整数 `a` 和 `b`,把它们相加后输出结果到标准输出中。
阅读全文