1087我的主宰好困C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b;while (~scanf("%d %d",&a,&b)) { if (a!=0||b!=0…… 题解列表 2021年11月06日 0 点赞 1 评论 425 浏览 评分: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 评论 101 浏览 评分:9.9
A+B for Input-Output Practice (III)-题解(Python代码) 摘要:核心语句:a, b= map(int, input().strip().split()) 这句话的作用是将输入的两个整数,中间以空格隔开,分别赋值给a,b ``` while True: …… 题解列表 2019年09月04日 0 点赞 0 评论 687 浏览 评分:9.9
LikeWater - 1087: A+B for Input-Output Practice (III) 摘要:```cpp #include #include using namespace std; // 编写一个程序,输入a、b、c三个值,输出其中最大值。 int main() { …… 题解列表 2023年02月27日 0 点赞 1 评论 175 浏览 评分:9.9
1087: A+B for Input-Output Practice (III) 摘要:解题思路:输一个输出一个,直到“0 0”。注意事项:要写出终止循环的方法哦!参考代码:#include<iostream> using namespace std; int main() { …… 题解列表 2022年05月21日 0 点赞 0 评论 217 浏览 评分:9.9
1087两数加和求解 摘要:解题思路:用for语句循环,break跳出循环注意事项:注意for循环的循环截止条件参考代码:#include<iostream>using namespace std;int main(){ …… 题解列表 2023年10月24日 0 点赞 0 评论 113 浏览 评分:9.9
A+B for Input-Output Practice (III)(怀氏c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(1) { …… 题解列表 2022年10月24日 0 点赞 0 评论 361 浏览 评分:9.9
A+B for Input-Output Practice (III)-题解(Java代码) 摘要:``` import java.util.Scanner; public class Main { public static void main(String[] args) { Sc…… 题解列表 2020年03月22日 0 点赞 0 评论 467 浏览 评分:9.9
运用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 评论 131 浏览 评分:9.9
1087: A+B for Input-Output Practice (III) 摘要:```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b&&(a!=0||b!=…… 题解列表 2022年08月31日 0 点赞 0 评论 486 浏览 评分:9.9