P1000 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*输入两个自然数,输出他们的和 */#include <stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); print…… 题解列表 2018年03月10日 0 点赞 0 评论 635 浏览 评分: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 评论 189 浏览 评分:2.0
1267:A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a; cout<<a+b…… 题解列表 2024年01月19日 0 点赞 0 评论 523 浏览 评分:6.0
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n…… 题解列表 2023年11月20日 0 点赞 0 评论 188 浏览 评分:6.0
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b; re…… 题解列表 2024年06月09日 0 点赞 0 评论 590 浏览 评分:6.0
1267题解(刷几眼) 摘要:解题思路:1注意事项:1参考代码:int a,b ; cin>>a>>b ; cout<<a+b<<endl;…… 题解列表 2023年11月01日 0 点赞 0 评论 255 浏览 评分:6.0
1267: A+B Problem(c++)题解 摘要:写这篇题解完全是消磨时间 代码 ```cpp #include using namespace std; int main() { int a,b; while(cin…… 题解列表 2023年05月04日 0 点赞 0 评论 387 浏览 评分:6.0
算术表达式与顺序执行--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 评论 148 浏览 评分:6.0
P1000-题解(C语言代码) 摘要:参考代码: #include int main() { int a,b; while(~scanf("%d%d", &a,…… 题解列表 2020年02月07日 0 点赞 0 评论 580 浏览 评分:6.0
c++解题思路 摘要:解题思路:注意事项:参考代码:#include<iosteream>using namespace std;int main(){ int a,b; cin >>a; cin >>b; …… 题解列表 2023年03月02日 0 点赞 0 评论 178 浏览 评分:6.0