题解列表

筛选

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……