1771: [编程入门]链表之节点删除(c语言代码) 摘要:```c #include #include typedef struct node { int id, socre; struct node* next; }student; st…… 题解列表 2024年08月06日 1 点赞 0 评论 691 浏览 评分:10.0
2896: 二维数组右上左下遍历 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split())l = [list(map(int,input().strip().split())) for i in ra…… 题解列表 2024年08月05日 1 点赞 0 评论 316 浏览 评分:0.0
1066: 二级C语言-自定义函数 此题有坑(c语言代码) 摘要:```c #include #include double fact(int n) { double n1 = 1.0; for (int i = 1; i …… 题解列表 2024年08月05日 1 点赞 1 评论 613 浏览 评分:10.0
2841: 大整数加法 摘要:```cpp #include using namespace std; struct hp { int len; int s[1000]; }; void init(string…… 题解列表 2024年08月05日 0 点赞 0 评论 529 浏览 评分:9.9
2116: 信息学奥赛一本通T1307-高精度乘法 摘要:```cpp #include using namespace std; struct hp { int len; int s[1000]; }; void init(string…… 题解列表 2024年08月05日 0 点赞 0 评论 617 浏览 评分:0.0
数组插入处理及C代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void sort(int a[],int n) //定义一个排序函数sort{ int i,j,temp; …… 题解列表 2024年08月05日 0 点赞 0 评论 322 浏览 评分:0.0
2895: 反反复复 摘要:解题思路:注意事项:参考代码:m = int(input())s = input()n = len(s)//ml = []k = 0for i in range(n): t = [] fo…… 题解列表 2024年08月05日 0 点赞 0 评论 601 浏览 评分:0.0
2894: 肿瘤检测 摘要:解题思路:注意事项:参考代码:n = int(input())l = [list(map(int,input().split())) for i in range(n)]an = 0ln = 0s =…… 题解列表 2024年08月05日 0 点赞 0 评论 282 浏览 评分:0.0
2893: 肿瘤面积 摘要:解题思路:注意事项:参考代码:n = int(input())l = [list(map(int,input().split())) for i in range(n)]a = b = -1m = 1…… 题解列表 2024年08月05日 0 点赞 0 评论 379 浏览 评分:0.0
同行列对角线的格子(C语言) 摘要:#####注意事项: **1、利用while循环找规律时要注意括号里面应不应该取等号 2、每一行输出完之后要单独输出一个换行符** ###### 代码块如下: ```c #include …… 题解列表 2024年08月05日 0 点赞 0 评论 447 浏览 评分:0.0