A+B Problem给个好评 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2023年11月20日 0 点赞 1 评论 189 浏览 评分:8.4
原神andc++萌新出品 题解:1267: A+B Problem 摘要:原神 启动!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码: #include<iostream>using namespace std;int main(){ …… 题解列表 2023年11月12日 0 点赞 0 评论 158 浏览 评分:8.0
A+B python题解 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())print(a+b)//说什么内容字数太少,本来以为会考什么数字太长需要用到数组啥的,没想到这么简单…… 题解列表 2023年11月03日 0 点赞 0 评论 543 浏览 评分:9.9
A+B Problem 参考答案 摘要:解题思路:输入两个数。加起来。注意事项:加分号!参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin >>…… 题解列表 2023年11月01日 0 点赞 3 评论 113 浏览 评分:8.2
题解:1267: A+B Problem 摘要:解题思路:注意事项:不要打错参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2023年11月01日 0 点赞 0 评论 168 浏览 评分:0.0
1267题解(刷几眼) 摘要:解题思路:1注意事项:1参考代码:int a,b ; cin>>a>>b ; cout<<a+b<<endl;…… 题解列表 2023年11月01日 0 点赞 0 评论 255 浏览 评分:6.0
编写题解 1267: A+B Problem 摘要:解题思路:1、创建变量a,b2、输入变量3、输出a+b参考代码:#include<iostream> int main (){ int a,b; cin>>a>>b; …… 题解列表 2023年07月14日 0 点赞 0 评论 111 浏览 评分:0.0
1267: A+B Problem 摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b ; cin>>a>>b ; cout<<a+b…… 题解列表 2023年07月11日 0 点赞 0 评论 333 浏览 评分:7.3
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d", &a, &b); printf("%d\n",a…… 题解列表 2023年06月10日 0 点赞 0 评论 159 浏览 评分:0.0
A+B Problem(python) 摘要:解题思路:这题很简单,用map()函数输入两个值再直接相加即可注意事项:参考代码:x,y=map(int,input().split())print(x+y)…… 题解列表 2023年06月09日 0 点赞 0 评论 883 浏览 评分:9.9