题解列表

筛选

c链表

摘要:#include<stdio.h>struct Node{ int shi; int xu; struct Node *next;};struct Node *createList(int n){ s……

拆分位数 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c,number;scanf("%d",&number);a=number/100;b=(numb……

求圆的面积 (C语言代码)

摘要:解题思路:注意事项:保留两位小数。参考代码:#include<stdio.h>int main(){float r;float s;scanf("%f",&r);s=r*r*3.1415926; pr……

字符逆序 (C语言代码)

摘要:解题思路:    通过添加string.h头文件来调用字符串相关的函数,快速而准确地处理字符串,避免用其他方法对字符串处理时出现的尴尬。注意事项:    要注意字符串相关函数的参考代码:#includ……