xzwdqjdx @ 2023-10-03 21:20:32
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
int c;
c=a+b;
cout<<c;
return 0;
}
by hmy_ddxw__awa @ 2023-10-06 14:33:21
挺好
#include<bits/stdc++.h>//头文件
int a,b;//定义变量
int main(){//主函数
scanf("%d%d",&a,&b);//输入
printf("%d",a+b);//输出
}
by huangenning @ 2023-10-10 22:45:33
1、cin/cout关同步 2、不必使用c,直接输出a+b即可
by _O_v_O_ @ 2023-10-11 18:09:48
@DANNNsth 关同步更快
by DBL_MAX @ 2023-10-15 16:34:35
```c
#include<stdio.h>
int main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}
```
对于不会快读的蒟蒻——我来说,这已经是我的极限了。
by yyyyyyyyu @ 2023-10-22 19:55:31
#include <cstdio>
int a,b;
int main(){
scanf("%d%d",&a,&b);
printf("%d",a+b);
}
c++,3ms
by lzy13915136909 @ 2023-11-05 19:21:13
把 int c; c=a+b; cout<<c; 改成cout<<a+b<<endl;
by edu1081457001 @ 2024-02-04 15:50:08
#include<bits/stdc++.h>
using namespace std;
int main()
{
int A,B;
cin>>A>>B;
cout<<A+B<<endl;
return 0;
}
这样吧,不需要设三个变量
至少我是这么做的没有WA
应该是可以的吧……
啊哈哈没错我不是大佬,我也是萌新,又一次装逼成功
总之,我完美地解答了你的问题,你的代码有10行,我的只有九行(好像根本没有优化多少)而且我少用了一个变量,对不对
有好多废话
咦咦咦咦咦咦咦咦,我怎么说了这么多话,太令人震惊了个头
再见,希望我的解答对你有用