1087两数加和求解 摘要:解题思路:用for语句循环,break跳出循环注意事项:注意for循环的循环截止条件参考代码:#include<iostream>using namespace std;int main(){ …… 题解列表 2023年10月24日 0 点赞 0 评论 127 浏览 评分:9.9
A+B for Input-Output Practice (III) 摘要:#include<stdio.h>int main()//scanf()函数的返回值{ int a,b; while ((scanf("%d%d", &a, &b))&&(a!=0||b!=0))…… 题解列表 2023年11月06日 0 点赞 0 评论 96 浏览 评分:0.0
好写》好写 摘要:参考代码:#include<iostream> using namespace std; int main() { int a,b; while(cin >> a >> b)…… 题解列表 2024年01月02日 0 点赞 0 评论 127 浏览 评分:9.2
使用判断语句提前终止000000000000444444444 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2024年01月19日 0 点赞 0 评论 69 浏览 评分:0.0
输入截止易错点判断 摘要:原题链接:[题目 1087: A+B for Input-Output Practice (III)](https://www.dotcpp.com/oj/problem1087.html "题目 1…… 题解列表 2024年01月21日 0 点赞 0 评论 122 浏览 评分:9.9
A+B for Input-Output Practice (III) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a, b; while(cin>>a>>b) { if (a…… 题解列表 2024年03月07日 0 点赞 0 评论 89 浏览 评分:0.0
1087A+B(3)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long a,b; while(scanf("%lld%lld",&a,&b)) { if(a==0…… 题解列表 2024年05月29日 0 点赞 0 评论 89 浏览 评分:0.0
运用C语言解1087: A+B for Input-Output Practice (III) 摘要:解题方法很多运用C语言的同学可以参考这边感谢评论区提供其他方法以下是参考代码:#include <stdio.h>int main (){ int a,b;while (~scanf("%d %d",…… 题解列表 2024年06月21日 0 点赞 0 评论 139 浏览 评分:9.9
A+B for Input-Output Practice (III) C语言代码 摘要:#include<stdio.h>int main(void){ int i, a, b, j; scanf("%d %d", &a, &b); while (!(…… 题解列表 2024年07月31日 0 点赞 0 评论 110 浏览 评分:9.9
无聊的星期五 摘要:while True: x, y = list(map(int, input().split())) if x == 0 and y == 0: break print…… 题解列表 2024年12月06日 0 点赞 0 评论 104 浏览 评分:0.0