编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ unsigned int a,b; scanf("%d %d",&a,&b); printf(…… 题解列表 2023年03月24日 0 点赞 0 评论 191 浏览 评分:8.9
算术表达式与顺序执行--1.A+B Problem 摘要:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a+b); retur…… 题解列表 2023年03月23日 0 点赞 0 评论 95 浏览 评分:6.0
c++解题思路 摘要:解题思路:注意事项:参考代码:#include<iosteream>using namespace std;int main(){ int a,b; cin >>a; cin >>b; …… 题解列表 2023年03月02日 0 点赞 0 评论 120 浏览 评分:6.0
1267: A+B Problem 摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; cout…… 题解列表 2023年01月12日 0 点赞 0 评论 293 浏览 评分:8.0
A+B Problem(python) 摘要:解题思路:怎么同时输入多个数字 用map注意事项:参考代码: a,b=map(int,input().split())print(a+b)…… 题解列表 2023年01月04日 0 点赞 1 评论 732 浏览 评分:8.4
A+B Problem题解 摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)co…… 题解列表 2023年01月03日 0 点赞 0 评论 255 浏览 评分:6.0
这么简单的题还属于中档题? 摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); …… 题解列表 2022年11月09日 0 点赞 0 评论 914 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())#map()方法将字符串转化为整型 print(a+b)…… 题解列表 2022年10月18日 0 点赞 0 评论 621 浏览 评分:9.3
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x,y; cin>>x>>y; int a=…… 题解列表 2022年10月06日 0 点赞 0 评论 650 浏览 评分:9.9
P1000(c++代码)快来看看看看吧! 摘要:解题思路:输入a,b再输出a+b.注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; …… 题解列表 2022年06月03日 0 点赞 0 评论 706 浏览 评分:8.0