A+B for Input-Output Practice (I) 题解 摘要:解题思路:不就是加法嘛!弄了个英文就不会了?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ …… 题解列表 2022年05月07日 0 点赞 0 评论 540 浏览 评分:0.0
10845 A+B(1)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long a,b; while(scanf("%lld%lld",&a,&b)!=EOF) { pr…… 题解列表 2024年05月29日 0 点赞 1 评论 810 浏览 评分:0.0
编写题解 1085: A+B for Input-Output Practice (I) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while (scanf("%d %d",&a,&b)!=EOF) { …… 题解列表 2022年03月19日 0 点赞 0 评论 501 浏览 评分:0.0
A+B for Input-Output Practice (I) 摘要: ```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b) cout…… 题解列表 2022年03月05日 0 点赞 0 评论 515 浏览 评分:0.0
A+B for Input-Output Practice (I) 摘要:#include<stdio.h>int main(){ long long a,b; while(scanf("%lld %lld",&a,&b)!=EOF) { p…… 题解列表 2024年12月11日 0 点赞 0 评论 721 浏览 评分:0.0
A+B from beiqiao(C++) 摘要:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b) //编译器…… 题解列表 2022年01月23日 0 点赞 0 评论 407 浏览 评分:0.0
多项输入的处理方法 摘要:解题思路:经典多项输入的处理,一般用while语句循环直到scanf不再成功输入为止。可以用!=EOF,这里我采用另一种少见的写法,因为scanf本身也有函数返回值,即成功输入的个数,那么只有其输入两…… 题解列表 2026年07月18日 0 点赞 0 评论 63 浏览 评分:0.0
1085: A+B for Input-Output Practice (I) 摘要:无脑打印,没啥可说的。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(ci…… 题解列表 2021年12月15日 0 点赞 0 评论 452 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:我写出来两个比较简单的代码,有任何问题都可以在下面留言哦!参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d"…… 题解列表 2018年03月03日 0 点赞 0 评论 1322 浏览 评分:0.0
。。。最快。。。提交时的原代码直接提交。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { 见提交时的原代码。 return 0; }…… 题解列表 2019年02月08日 1 点赞 0 评论 1329 浏览 评分:0.0