题解 1061: 二级C语言-计负均正(C) 摘要:注意事项:统计个数,和计算均值,在同一个for中实现,可以减少遍历数组的次数。参考代码:#include<stdio.h> int main(void){ int array[20]; …… 题解列表 2022年08月09日 0 点赞 0 评论 334 浏览 评分:0.0
1083——————Hello,World! 摘要:题目 1083: Hello, world! **题目描述** This is the first problem for test. Since all we know the ASCII …… 题解列表 2022年08月09日 0 点赞 0 评论 893 浏览 评分:0.0
题解 1062: 二级C语言-公约公倍(C) 摘要:解题思路:第三遍了~参考代码:#include<stdio.h> int main(void){ int m,n; int factor,multiple; int check; …… 题解列表 2022年08月09日 0 点赞 0 评论 273 浏览 评分:0.0
可ACAC1111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { int sum1=0,s…… 题解列表 2022年08月09日 0 点赞 0 评论 238 浏览 评分:0.0
题解 1063: 二级C语言-统计字符(C语言数组+for循环+gets()函数实现) 摘要:解题思路:上次是用while循环,getchar()函数进行输入,实现的统计,文章链接:https://blog.dotcpp.com/a/88928本次用的gets()函数向数组中写入数据,再用fo…… 题解列表 2022年08月09日 0 点赞 0 评论 389 浏览 评分:0.0
[编程入门]求和训练 常规做法 摘要:```c #include #include int main() { float a,b,c,i; float sum1=0,sum2=0,sum3=0; scanf("%f%f…… 题解列表 2022年08月09日 0 点赞 0 评论 387 浏览 评分:0.0
编写题解 1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int fun(char a[],char b[]) { int l=s…… 题解列表 2022年08月09日 0 点赞 0 评论 310 浏览 评分:0.0
1676: 数据结构-链表的基本操作(待分析,分析明儿再说) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct Node { …… 题解列表 2022年08月09日 0 点赞 0 评论 388 浏览 评分:0.0
守望者的逃离 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,s,t;//魔法初值m,初始位置与岛的出口之间的距离s,岛沉没的时间t。 scanf("%d %d …… 题解列表 2022年08月09日 0 点赞 0 评论 374 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:用一个数组存放四位数的各个位上的数,再逆序输出注意事项:参考代码:#include <stdio.h> int kongge(int a) { int b[4]; …… 题解列表 2022年08月10日 0 点赞 0 评论 267 浏览 评分:0.0