题解列表

筛选

C语言训练-尼科彻斯定理 (C语言代码)

摘要:解题思路:比如,13*13*13可以看成 : 13个(13*13)相加,故,共有13个奇数相加得到13的三次方。可初步写为  13+13+13+13+13……(13个13相加)。从中间这个13开始,同……

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