题解 1035: [编程入门]自定义函数之字符类型统计 摘要: #include #include int main() { char a[100]; int b[4]={0}…… 题解列表 2022年10月28日 0 点赞 0 评论 422 浏览 评分:0.0
简单易懂的题解(迭代) 摘要:解题思路: 这个题看似简单,必须需要懂它的逻辑才能做出来。经过我动手写,得到了一个规律:第一个数为a,第二个数为 a * 10 ^1 + 第一个数;第三个数等于a * 1…… 题解列表 2022年10月28日 0 点赞 0 评论 455 浏览 评分:0.0
求偶数和,无数组!!(C语言) 摘要:解题思路:输入m循环判断,无数组(C语言)注意事项:无参考代码:#include<stdio.h>int main(){ int x,i,m,sum=0; scanf("%d",&x); for(i=…… 题解列表 2022年10月28日 0 点赞 0 评论 316 浏览 评分:0.0
常规发处理变量 摘要:解题思路:注意事项:调用fun()函数时,注意参数参考代码:#include<stdio.h> int fun(int num) { int a, b, c, d; a = num / 1…… 题解列表 2022年10月28日 0 点赞 0 评论 422 浏览 评分:0.0
1872:春夏秋冬判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int month; while(scanf("%d",&month)!=EOF) { if(month>=…… 题解列表 2022年10月29日 0 点赞 0 评论 484 浏览 评分:0.0
2226 .c语言练习 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,t; a=b=c=t=0; scanf("%d %d %d",&a,&b,&c); if(…… 题解列表 2022年10月29日 0 点赞 0 评论 473 浏览 评分:0.0
1011.最大公约数与最小公倍数c语言练习 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int m,n,x,y,t; scanf("%d %d",&m,&n); y=m*n; while(n!=0)…… 题解列表 2022年10月29日 0 点赞 0 评论 443 浏览 评分:0.0
调用数学函数库求解 摘要:解题思路:先输入三个数字,依次求解累加注意事项:注意不要把小数点丢了,这是一个小细节。参考代码:#include<stdio.h> #include<math.h> int main() { …… 题解列表 2022年10月29日 0 点赞 0 评论 320 浏览 评分:0.0
1093——字符逆序 摘要:参考代码:#include"stdio.h" #include"string.h" typedef char string[111]; string str; void fun(char *s…… 题解列表 2022年10月29日 0 点赞 0 评论 333 浏览 评分:0.0
编写题解 1676: 数据结构-链表的基本操作 摘要:### 使用结构体存数据和地址  ```cpp typedef struct…… 题解列表 2022年10月30日 0 点赞 0 评论 483 浏览 评分:0.0