P1000 题解(c++简单) 摘要:解题思路:不就是加法嘛,还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int x,y;int main(){ scanf("%d…… 题解列表 2022年05月14日 0 点赞 0 评论 160 浏览 评分:0.0
哈哈哈,没想到还有那么一题简单得不行的题吧!!! 摘要:解题思路:简简单单!注意事项:无!!参考代码:#include using namespace std; int main() { int a,b; cin>>a>>b; …… 题解列表 2022年02月15日 0 点赞 0 评论 1107 浏览 评分:6.0
简单易懂a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2022年02月11日 0 点赞 0 评论 99 浏览 评分:0.0
P1000......21888545 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,b,sum; scanf("%d%d",&a,&b); sum=a+b; …… 题解列表 2021年11月14日 0 点赞 0 评论 127 浏览 评分:2.0
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
Ikaros-P1000 Python解决 摘要:解题思路: 使用map函数然后输入即可参考代码:number = list(map(int,input().split()))print(number[0] + number[1])…… 题解列表 2021年09月16日 0 点赞 1 评论 774 浏览 评分: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 评论 849 浏览 评分:9.9
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 int main() { int a,b; while(~scanf("%d%d", &a,…… 题解列表 2020年02月07日 0 点赞 0 评论 460 浏览 评分:6.0
P1000-题解(C++代码) 摘要:这个 就是 a+b咯 读入a+b 然后输出a+b ```cpp #include using namespace std; int main() { long lo…… 题解列表 2019年08月29日 0 点赞 0 评论 595 浏览 评分:0.0