题解列表

筛选

老仁的c语言

摘要:解题思路:使用if语句注意事项:注意变量的设定参考代码:#include <stdio.h>#include <stdlib.h>#define m(x,max) max=x/*分别用函数和带参的宏,……

1727: 首字母大写-C语言

```c#include#include#definemax100intmain(){chars1[max];while(gets(s1)!=NULL){intlen=strlen(s1);if(s1[0]>='a'&&s1[0]='a'&&s1[i]

1678: 数据结构-双向循环链表-C语言

```c//双向循环链表#include#includetypedefstructnode{intdata;structnode*prior;//指向前驱节点structnode*next;//指向后继节点}node,*link;linkListCreat()//构建空双向循环链表,