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; cin>>a>>b; cout<<a+b…… 题解列表 2024年12月01日 1 点赞 0 评论 122 浏览 评分:9.9
这么简单的题还属于中档题? 摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); …… 题解列表 2022年11月09日 0 点赞 0 评论 914 浏览 评分: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
编写题解 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
A+B Problem给个好评 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2023年11月20日 0 点赞 1 评论 90 浏览 评分:8.4
P1000-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d%d",&x,&y);//输入两个数 printf(…… 题解列表 2020年06月30日 0 点赞 0 评论 436 浏览 评分:8.0
P1000 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,sum=0; scanf("%d%d",&a,&b); sum…… 题解列表 2018年09月08日 9 点赞 0 评论 808 浏览 评分:7.6
P1000 (一句代码不用写!) 摘要:解题思路:真的一句代码不用写,编辑器默认的代码复制过来就能用。注意事项:学会复制粘贴就可以。参考代码:#include<stdio.h> int main() { int a,b; …… 题解列表 2019年01月19日 0 点赞 0 评论 617 浏览 评分:6.7