A+B题解
2025-07-26 20:15:44
发布于:浙江
9阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int a,b;
int main(){
cin>>a>>b;
cout<<a+b;
return 0;
}
知道为什么A+B准确率这么低吗?都是小码王发其他题答案刷出来的🤔🤔🤔
全部评论 2
另一种解法(纯无聊)
#include<bits/stdc++.h> using namespace std; typedef long long apple; apple pear(int a,int b){ return a+b; } int main(){ apple a,b; cin>>a>>b; cout<<pear(a,b); return 0; }
2025-08-08 来自 浙江
0作者不处
2025-07-26 来自 浙江
0作者不处
2025-07-26 来自 浙江
0作者不处
2025-07-26 来自 浙江
0作者不处思考
2025-07-26 来自 浙江
0
有帮助,赞一个