A+B Problem(python) 摘要:解题思路:怎么同时输入多个数字 用map注意事项:参考代码: a,b=map(int,input().split())print(a+b)…… 题解列表 2023年01月04日 0 点赞 1 评论 850 浏览 评分:8.4
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
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ unsigned int a,b; scanf("%d %d",&a,&b); printf(…… 题解列表 2023年03月24日 0 点赞 0 评论 258 浏览 评分:8.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())#map()方法将字符串转化为整型 print(a+b)…… 题解列表 2022年10月18日 0 点赞 0 评论 706 浏览 评分:9.3
题解 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 评论 175 浏览 评分:9.7
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 评论 1044 浏览 评分:9.9
A+B Problem(python) 摘要:解题思路:这题很简单,用map()函数输入两个值再直接相加即可注意事项:参考代码:x,y=map(int,input().split())print(x+y)…… 题解列表 2023年06月09日 0 点赞 0 评论 884 浏览 评分:9.9
这么简单的题还属于中档题? 摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); …… 题解列表 2022年11月09日 0 点赞 0 评论 999 浏览 评分:9.9
1267: A+B Problem题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b…… 题解列表 2024年12月01日 3 点赞 0 评论 544 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 1 点赞 0 评论 572 浏览 评分:9.9