求偶数和,无数组!!(C语言) 摘要:解题思路:输入m循环判断,无数组(C语言)注意事项:无参考代码:#include<stdio.h>int main(){ int x,i,m,sum=0; scanf("%d",&x); for(i=…… 题解列表 2022年10月28日 0 点赞 0 评论 314 浏览 评分:0.0
常规发处理变量 摘要:解题思路:注意事项:调用fun()函数时,注意参数参考代码:#include<stdio.h> int fun(int num) { int a, b, c, d; a = num / 1…… 题解列表 2022年10月28日 0 点赞 0 评论 420 浏览 评分:0.0
1872:春夏秋冬判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int month; while(scanf("%d",&month)!=EOF) { if(month>=…… 题解列表 2022年10月29日 0 点赞 0 评论 483 浏览 评分: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 评论 471 浏览 评分: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 评论 440 浏览 评分:0.0
调用数学函数库求解 摘要:解题思路:先输入三个数字,依次求解累加注意事项:注意不要把小数点丢了,这是一个小细节。参考代码:#include<stdio.h> #include<math.h> int main() { …… 题解列表 2022年10月29日 0 点赞 0 评论 316 浏览 评分:0.0
1093——字符逆序 摘要:参考代码:#include"stdio.h" #include"string.h" typedef char string[111]; string str; void fun(char *s…… 题解列表 2022年10月29日 0 点赞 0 评论 331 浏览 评分:0.0
编写题解 1676: 数据结构-链表的基本操作 摘要:### 使用结构体存数据和地址  ```cpp typedef struct…… 题解列表 2022年10月30日 0 点赞 0 评论 483 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,s; char c; int h=0,k; while((k=scanf…… 题解列表 2022年10月30日 0 点赞 0 评论 397 浏览 评分:0.0
用栈来判断是否回文 摘要:解题思路:先判断是否是回文数,然后再判断之和注意事项: 注意-1的情况参考代码:import java.util.Scanner;import java.util.Stack;public c…… 题解列表 2022年10月30日 0 点赞 0 评论 423 浏览 评分:0.0