简单的a+b (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int sum,a,b; printf("输入两个整数:\n"); scanf("%d%d",&a,&b)…… 题解列表 2017年11月24日 0 点赞 0 评论 590 浏览 评分:0.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考 #include<iostream> using namespace std int ma…… 题解列表 2018年11月11日 1 点赞 0 评论 463 浏览 评分:0.0
1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:其实直接提交就好,源代码就是1000的题解参考代码:#include<iostream>using namespace std;int main(){ int a,b; …… 题解列表 2023年11月03日 0 点赞 0 评论 86 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C++代码) 摘要: #题目: ####输入两个整数a和b,计算a+b的和 ####注意此题是多组测试数据 #####注意事项:注意此题是多组测试数据,需要注意 送上代码 ```cpp #include…… 题解列表 2019年07月27日 0 点赞 0 评论 867 浏览 评分:0.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考代码:#include "stdafx.h"int main(){ int a, b,c; scanf_s("%d%d",&a,&b); c = a + b; printf("…… 题解列表 2018年03月15日 0 点赞 0 评论 788 浏览 评分:0.0
"简单的a+b"题解 摘要:解题思路:无注意事项:此题是求多组数据,可用while(cin>>a>>b)来输入每一组数据;为了格式,所以得在输出后加上\n转义字符或endl来换行参考代码:#include<iostream>us…… 题解列表 2022年09月11日 0 点赞 0 评论 121 浏览 评分:0.0
简单的a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int a,b; cin>>a>>b; int c=a+b; cou…… 题解列表 2023年02月04日 0 点赞 0 评论 60 浏览 评分:0.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){int a,b;cin>>a>>b;cout<<a+b;return 0…… 题解列表 2018年11月03日 1 点赞 1 评论 171 浏览 评分:0.0
编写题解 1000: [竞赛入门]简单的a+b 摘要:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n",a+b); retu…… 题解列表 2022年05月07日 0 点赞 0 评论 127 浏览 评分:0.0
[竞赛入门]简单的a+b 摘要:解题思路:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) { cout…… 题解列表 2021年07月27日 0 点赞 0 评论 126 浏览 评分:0.0