A+B from beiqiao(C++) 摘要:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b) //编译器…… 题解列表 2022年01月23日 0 点赞 0 评论 140 浏览 评分:0.0
编写题解 1085: A+B for Input-Output Practice (I) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)==2){ printf("%d\n…… 题解列表 2023年03月09日 0 点赞 0 评论 86 浏览 评分:0.0
1085 我爱你C语言简洁扼要 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d %d",&a,&b)) {printf("%d\n",a+…… 题解列表 2021年11月05日 0 点赞 0 评论 276 浏览 评分:0.0
A+B for Input-Output Practice (I) 摘要: ```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b) cout…… 题解列表 2022年03月05日 0 点赞 0 评论 132 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ int a,b; while(scanf("%d %d",&a,&b)==2) printf("%d",a+b); re…… 题解列表 2017年10月27日 0 点赞 0 评论 603 浏览 评分:0.0
A+B for Input-Output Practice (I) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { printf("%…… 题解列表 2018年01月03日 0 点赞 0 评论 737 浏览 评分:0.0
A+B for Input-Output Practice (I) (皮皮哲Java代码) 摘要:解题思路:详细见注释参考代码:import java.util.Scanner;public static void main(String[] args) { Scanner input …… 题解列表 2018年12月14日 1 点赞 0 评论 598 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int a,b; while((scanf("%d%d",&a,&b))!…… 题解列表 2020年09月10日 0 点赞 0 评论 218 浏览 评分:0.0