A+B for Input-Output Practice (I)-题解(Java代码) 摘要:``` 题意:输入两数之和 ``` ``` import java.util.Scanner; public class Main { public static void main(S…… 题解列表 2020年03月22日 0 点赞 0 评论 877 浏览 评分:9.9
C++简便易懂 摘要:# 其实这题直接点提交就行了 ``` #include using namespace std; int main() { int a,b; while(cin>>a>>…… 题解列表 2023年01月14日 0 点赞 0 评论 188 浏览 评分:9.9
题解 1085: A+B for Input-Output Practice (I) 摘要:`while(cin>>)`即可。 ````cpp #include using namespace std; int main(){ long long a,b; while(cin…… 题解列表 2024年02月25日 0 点赞 0 评论 238 浏览 评分:9.9
题目 1085: A+B for Input-Output Practice (I) (C语言) 摘要:```c #include int main() { int a, b; while(scanf("%d%d", &a, &b) != EOF) { …… 题解列表 2023年04月09日 0 点赞 0 评论 715 浏览 评分:9.9
A+B for Input-Output Practice (I)(c++代码) 摘要:解题思路:换个英文版你就不会了???注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ while(…… 题解列表 2022年05月08日 0 点赞 0 评论 383 浏览 评分:9.9
A+B for Input-Output Practice (I) 摘要:解题思路:队列的思想注意事项:参考代码:#include<stdio.h> #include<stdlib.h> typedef struct ST { struct ST* next…… 题解列表 2022年01月21日 0 点赞 1 评论 776 浏览 评分:9.9
1085: A+B for Input-Output Practice (I) 摘要:解题思路:这题其实谁都会做,主要是要看出题目里的要求:“with one line of output for each line in input”,也就是要用EOF来结束注意事项:输出时别忘记换行…… 题解列表 2022年01月27日 0 点赞 4 评论 1086 浏览 评分:9.9
1085: A+B for Input-Output Practice (I) 摘要:```csharp #include using namespace std; int main() { int a,b; while(cin>>a>>b)cout…… 题解列表 2023年02月02日 0 点赞 0 评论 443 浏览 评分:9.9
好写》好写 摘要:参考代码:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b) …… 题解列表 2024年01月02日 0 点赞 0 评论 133 浏览 评分:9.9
番10 A+B for Input-Output Practice (I) (C++代码) 摘要:解题思路: c++训练,注意while中可包含cin输入,可以简化代码注意事项: &nb 题解列表 2019年04月07日 0 点赞 0 评论 996 浏览 评分:9.9