A+B for Input-Output Practice (VII)(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d %d",&a,&b)!=EOF) { …… 题解列表 2022年11月03日 0 点赞 0 评论 115 浏览 评分:0.0
1091: A+B for Input-Output Practice (VII) 摘要:无脑打印即可。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(cin>>a…… 题解列表 2021年12月15日 0 点赞 0 评论 470 浏览 评分:0.0
A+B for Input-Output Practice (VII)-题解(C语言代码)【奇妙的停止判断】 摘要:## 插入代码 ```c #include int main() { int a,b; while(scanf("%d",&a)!=EOF) //用a来判断是否…… 题解列表 2020年12月25日 0 点赞 0 评论 229 浏览 评分:0.0
A+B for Input-Output Practice (VII)-题解(C语言代码) 摘要:#include #include int main() { int a,b; while(~scanf("%d%d",&a,&b)) printf("%d\n\n",a+b); …… 题解列表 2020年02月04日 0 点赞 0 评论 232 浏览 评分:0.0
输入输出--A+B 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>using namespace std;int main(){int a,b;while(cin…… 题解列表 2022年03月11日 0 点赞 0 评论 107 浏览 评分:0.0
A+B for Input-Output Practice (VII) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d %d",&a,&b)==2){ printf("%d\n\n…… 题解列表 2019年04月12日 0 点赞 0 评论 324 浏览 评分:0.0
1091: A+B for Input-Output Practice (VII) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int func(int x,int y); int main() { int n, j; int sum = 0;…… 题解列表 2022年12月31日 0 点赞 0 评论 67 浏览 评分:0.0
(C语言描述)3行代码解决问题,快来瞅瞅撒。 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a,b; while(scanf("%d %d",&…… 题解列表 2021年04月07日 0 点赞 0 评论 130 浏览 评分:0.0
A+B for Input-Output Practice (VII) (C语言代码) 摘要:注意事项:初始的那个代码!!格式坑死人:followed by a blank line。参考代码:#include<stdio.h>int main(){ int a,b; while(…… 题解列表 2017年10月18日 0 点赞 0 评论 660 浏览 评分:0.0
A+B for Input-Output Practice (VII) (C语言代码) 摘要:解题思路: 主要就是多次输入问题注意事项: 在while(~scanf("%d%d",&a,&b))中主要加上“”~“”,否则会超时。参考代码:#include<stdio.h>int mai…… 题解列表 2019年04月27日 0 点赞 0 评论 279 浏览 评分:0.0