题解列表
1872:春夏秋冬判断
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int month; while(scanf("%d",&month)!=EOF) { if(month>=……
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(……
1011.最大公约数与最小公倍数c语言练习
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int m,n,x,y,t; scanf("%d %d",&m,&n); y=m*n; while(n!=0)……
1093——字符逆序
摘要:参考代码:#include"stdio.h"
#include"string.h"
typedef char string[111];
string str;
void fun(char *s……
编写题解 1676: 数据结构-链表的基本操作
摘要:### 使用结构体存数据和地址

```cpp
typedef struct……
敲简单C语言代码!!!
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,s; char c; int h=0,k; while((k=scanf……