简单,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,sum; scanf ("%d %d",&x,&y); sum=x+y; …… 题解列表 2024年12月03日 7 点赞 0 评论 1491 浏览 评分:0.0
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 评论 1097 浏览 评分:9.9
(Python)使用split()方法分隔两个加数 split()方法能指定以某种字符串将分隔符对字符串进行切片,返回包含所有切片的列表[关于split()方法的介绍](https://www.runoob.com/python/att-string-split.html")##代码```pythonadds=input().split()print( 题解列表 2024年01月15日 0 点赞 0 评论 630 浏览 评分:9.9
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n…… 题解列表 2023年11月20日 0 点赞 0 评论 496 浏览 评分:6.0
A+B Problem给个好评 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2023年11月20日 0 点赞 1 评论 456 浏览 评分:8.4
1267题解(刷几眼) 摘要:解题思路:1注意事项:1参考代码:int a,b ; cin>>a>>b ; cout<<a+b<<endl;…… 题解列表 2023年11月01日 0 点赞 0 评论 620 浏览 评分:6.0
编写题解 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 评论 461 浏览 评分:0.0
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ unsigned int a,b; scanf("%d %d",&a,&b); printf(…… 题解列表 2023年03月24日 0 点赞 0 评论 551 浏览 评分: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 评论 433 浏览 评分:6.0
这么简单的题还属于中档题? 摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); …… 题解列表 2022年11月09日 1 点赞 0 评论 1405 浏览 评分:10.0