A1.A+B problem
2026-02-09 16:43:02
发布于:浙江
25阅读
0回复
0点赞
#include<bits/stdc++.h>//用万能头文件是一个好习惯
#define ll long long//初学者不用写
using namespace std;//命名空间
int main(){//主函数
ios::sync_with_stdio(false);//初学者只要知道这叫输入输出保底
cin.tie(0);
cout.tie(0);
int a,b;//定义
cin>>a>>b;//输入
cout<<a+b;//输出
return 0;//好习惯
}
全部评论 2
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);cin.tie(nullptr);
unordered_map<int,string> mp{{1,""}};
cout<<mp[1];
int a,b;
cin >> a >> b;
cout << a+b;
return 0;
}2026-02-08 来自 广东
2OK
2026-02-09 来自 浙江
1





















有帮助,赞一个