C语言解谁家孩子跑最慢 摘要:解题思路:由题目给出的信息可以整理出如下几点:①每位孩子的分数各不相同②各家孩子的总分相同③各家孩子的分数不连续,由于李家和王家都给出了第一个孩子的成绩,分别是9分和8分,因此他们两家剩余的两个孩子的…… 题解列表 2024年08月06日 2 点赞 0 评论 331 浏览 评分:0.0
1771: [编程入门]链表之节点删除(c语言代码) 摘要:```c #include #include typedef struct node { int id, socre; struct node* next; }student; st…… 题解列表 2024年08月06日 1 点赞 0 评论 479 浏览 评分: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 评论 184 浏览 评分: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 评论 416 浏览 评分:10.0
2841: 大整数加法 摘要:```cpp #include using namespace std; struct hp { int len; int s[1000]; }; void init(string…… 题解列表 2024年08月05日 0 点赞 0 评论 386 浏览 评分:9.9
2116: 信息学奥赛一本通T1307-高精度乘法 摘要:```cpp #include using namespace std; struct hp { int len; int s[1000]; }; void init(string…… 题解列表 2024年08月05日 0 点赞 0 评论 477 浏览 评分:0.0
数组插入处理及C代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void sort(int a[],int n) //定义一个排序函数sort{ int i,j,temp; …… 题解列表 2024年08月05日 0 点赞 0 评论 179 浏览 评分: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 评论 403 浏览 评分: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 评论 163 浏览 评分: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 评论 256 浏览 评分:0.0