题解列表

筛选

可读性极差hhhh

摘要:```c #include #include #include int main() { int n; scanf("%d", &n); int sum = 0……

1到30阶乘和

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i;    double j=1,sum=0;    for(i=1;i<=30;i++)    ……

容易理解的C语言代码

摘要:解题思路:    判断对角线的横纵坐标关系    一个是i = j    一个是i + j = 长度注意事项:参考代码:#include <stdio.h> int main() {     i……

容易理解的C语言代码

摘要:解题思路:    虽然没必要用这么复杂的方法,    但就当是温习一下快速排序的算法吧注意事项:参考代码:#include <stdio.h> int partition(int arr[], ……