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
运用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
1087: A+B for Input-Output Practice (III) C语言代码 摘要: #include int main() { int a,b; while(1) { …… 题解列表 2022年11月19日 0 点赞 0 评论 325 浏览 评分:9.9
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 评论 427 浏览 评分:9.9
WU-A+B for Input-Output Practice (III) (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF) { if(a==0&…… 题解列表 2017年12月15日 7 点赞 8 评论 2353 浏览 评分:9.4
ACM学习日记03--A+B for Input-Output Practice (III) 摘要: #include int main() { int a, b; while ((scanf("%d %d", &a, &b)) == 2…… 题解列表 2019年12月15日 0 点赞 0 评论 656 浏览 评分:9.0
A+B for Input-Output Practice (III)-题解(C语言代码) 摘要:解题思路:无无无注意事项:无无无参考代码:#include<stdio.h>int main(){ int n,m,i,sum=0; while(scanf("%d%d",&m,&n)) …… 题解列表 2020年08月13日 0 点赞 0 评论 721 浏览 评分:8.0
A+B for Input-Output Practice (III)-题解(C语言代码)小白可以轻松看懂的代码! 摘要: 题目说输入0 0为结束输出结果,那么要在前两题的基础上,在输出结果之前做判断,如果a+b==0那么就退出循环,如果不是,就打印输出结果。 参考代码: #include i…… 题解列表 2020年02月09日 0 点赞 1 评论 511 浏览 评分:8.0
优质题解 Manchester- A+B for Input-Output Practice (III) Many problems need to be noticed!!! 摘要:解题思路:输入一对整数,输出和,带回车;当遇到一对数为0 0时结束;但是有很多注意的问题;注意事项:若采用这种在while()控制结构中做判断,不能写为:while((cin>>a>>b)&&a!=0…… 题解列表 2017年11月24日 23 点赞 1 评论 3608 浏览 评分:6.6
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