编写题解 1267: A+B Problem 摘要:解题思路:设定一个整数“a”和“b”参考代码:#includeusing namespace std;int main(){ int a; int b; cin>>a>>b; …… 题解列表 2023年12月02日 0 点赞 0 评论 304 浏览 评分:9.9
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x,y; cin>>x>>y; int a=…… 题解列表 2022年10月06日 0 点赞 0 评论 733 浏览 评分:9.9
A+B python题解 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())print(a+b)//说什么内容字数太少,本来以为会考什么数字太长需要用到数组啥的,没想到这么简单…… 题解列表 2023年11月03日 0 点赞 0 评论 544 浏览 评分:9.9