P1000-题解(C语言代码) 摘要:参考代码: #include int main() { int a,b; while(~scanf("%d%d", &a,…… 题解列表 2020年02月07日 0 点赞 0 评论 813 浏览 评分:6.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 评论 497 浏览 评分:2.0
A+B的处理方式 摘要:解题思路:先考虑自然数的输入 —— input(),再考虑把input()所输入的数据最前端和最后变的多余空格进行删除处理 —— strip(),处理之后接着再按每个数据之间的空格进行分割、同时转换成…… 题解列表 2025年03月24日 3 点赞 0 评论 1769 浏览 评分:2.0
简单,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,sum; scanf ("%d %d",&x,&y); sum=x+y; …… 题解列表 2024年12月03日 7 点赞 0 评论 1405 浏览 评分:0.0
C++ : 类和两种访问权限的练习 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;class sum{ priva…… 题解列表 2025年03月21日 1 点赞 0 评论 1615 浏览 评分:0.0
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<…… 题解列表 2024年03月02日 0 点赞 0 评论 653 浏览 评分:0.0
P1000 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){int a,b;scanf("%d %d",&a,&b);printf("%d",a+b);return 0;}…… 题解列表 2017年10月16日 0 点赞 0 评论 1675 浏览 评分:0.0
1267: A+B Problem 摘要:解题思路:注意事项:都是提交成功过的,可以直接使用参考代码:#include<iostream>using namespace std;int main() { int x, y; cin…… 题解列表 2026年05月20日 0 点赞 0 评论 112 浏览 评分:0.0
P1000-题解(C++代码) 摘要:这个 就是 a+b咯 读入a+b 然后输出a+b ```cpp #include using namespace std; int main() { long lo…… 题解列表 2019年08月29日 0 点赞 0 评论 1202 浏览 评分:0.0
P1000 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y;while (scanf("%d%d",&x,&y)==2) printf("%d\n",x+y…… 题解列表 2018年01月14日 0 点赞 0 评论 1306 浏览 评分:0.0