陶陶摘苹果 (Java代码) 摘要:参考代码:import java.util.*;public class Main { public static void main(String[] args) { …… 题解列表 2019年05月18日 1 点赞 0 评论 1960 浏览 评分:8.0
A+B for Input-Output Practice (C语言代码)与上几题一样!! 摘要:解题思路:如上几题,只是要多输出个\n注意事项:无参考代码:#include<stdio.h>int main(){ int n; int x,y; int sum; scanf("%d",&n); …… 题解列表 2019年05月18日 0 点赞 0 评论 672 浏览 评分:0.0
A+B for Input-Output Practice (VII) (C语言代码)水题!! 摘要:解题思路:多输出一个\n就行了注意事项:无参考代码:#include<stdio.h>int main(){ int x,y; int sum; while(scanf("%d%d",&x,&y)!=…… 题解列表 2019年05月18日 0 点赞 0 评论 737 浏览 评分:0.0
A+B for Input-Output Practice (VI) (C语言代码)水题!! 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int x,y; int sum; while(scanf("%d",&x)!=EOF) { sum=0;…… 题解列表 2019年05月18日 0 点赞 0 评论 623 浏览 评分:0.0
A+B for Input-Output Practice (V) (C语言代码)水题! 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int n; int x,y; int sum; scanf("%d",&n); while(n--) { …… 题解列表 2019年05月18日 0 点赞 0 评论 916 浏览 评分:0.0
A+B for Input-Output Practice (IV) (C语言代码)这题有点迷 摘要:解题思路:这题是输入0 就终止输入,还是不处理???注意事项:无参考代码:(不处理情况)#include<stdio.h>int main(){ int x,y; int sum; while(sca…… 题解列表 2019年05月18日 0 点赞 0 评论 762 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码)这题需要考验你们的英语水平了!! 摘要:解题思路:这题是输入两个整数a,b(输入无限制)。如果a==0&&b==0,则不处理,否则输出和。与若输入0 0则终止输入,完全不同!!注意事项:还好参考代码:(输入无限制)#include<stdi…… 题解列表 2019年05月18日 0 点赞 0 评论 560 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码)水题 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { printf("%d…… 题解列表 2019年05月18日 0 点赞 0 评论 698 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码)水题。。。 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int a,b; int n; scanf("%d",&n); while(n--) { scanf("%…… 题解列表 2019年05月18日 0 点赞 0 评论 843 浏览 评分:0.0
C语言考试练习题_保留字母 (C语言代码)一数组,两数组,单字符,总有一种适合你! 摘要:解题思路:开两数组,开一数组,开单字符,随便你;注意事项:大小写字母之间不能用&&相连!!参考代码:(两数组)#include<stdio.h>#define N 100int main(){ cha…… 题解列表 2019年05月18日 0 点赞 0 评论 1141 浏览 评分:0.0