1267: A+B Problem题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b…… 题解列表 2024年12月01日 1 点赞 0 评论 122 浏览 评分:9.9
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年01月18日 0 点赞 0 评论 337 浏览 评分:9.9
超级简便的python 摘要:解题思路:利用map()和sum()注意事项:参考代码:s=list(map(int,input().split()))print(sum(s))…… 题解列表 2024年02月29日 0 点赞 0 评论 316 浏览 评分:9.9
1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; c…… 题解列表 2023年12月05日 0 点赞 0 评论 316 浏览 评分:9.9
P1000-题解(C语言代码,超简单) 摘要:大写的简单#include<stdio.h> int main() { int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n",…… 题解列表 2021年02月04日 0 点赞 0 评论 848 浏览 评分:9.9
(Python)使用split()方法分隔两个加数 摘要:split()方法能指定以某种字符串将分隔符对字符串进行切片,返回包含所有切片的列表 [关于split()方法的介绍](https://www.runoob.com/python/att-strin…… 题解列表 2024年01月15日 0 点赞 0 评论 172 浏览 评分:9.9
P1000 3行结束 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d", &a, &b); printf("%d\n",a+b)…… 题解列表 2021年10月10日 0 点赞 0 评论 954 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 0 点赞 0 评论 121 浏览 评分:9.9
题解 1267: A+B Problem 摘要:解题思路:加一下参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b;…… 题解列表 2023年04月05日 0 点赞 0 评论 119 浏览 评分:9.7
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())#map()方法将字符串转化为整型 print(a+b)…… 题解列表 2022年10月18日 0 点赞 0 评论 621 浏览 评分:9.3