C语言代码 用指针解决 摘要:解题思路:1.遍历输入 2.在输入过程中求全部数据的和、最大值、最小值 3.求有效数据(除了最大值和最小值之外的数据)的平均 题解列表 2024年12月07日 0 点赞 0 评论 40 浏览 评分:0.0
白细胞计数 学习新函数 摘要:解题思路:利用冒泡排序,直接从小到大排好数组顺序(或者利用algorithm库的sort函数排序)再利用cmath库求绝对值和较大的数省去重复利用if-else函数,使代码更简洁客观参考代码:int …… 题解列表 2024年08月23日 0 点赞 0 评论 87 浏览 评分:9.9
编写题解 2908: 白细胞计数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; const int N=310; double a[N];in…… 题解列表 2024年08月07日 0 点赞 0 评论 47 浏览 评分:0.0
编写题解 2908: 白细胞计数 摘要:解题思路:1,输入;2,冒泡排序;3,除去第一个最后一个累加求平均值;4,原数据(除去第一个最后一个)与平均值作差;5,输出。注意事项:参考代码:#include <stdio.h>int main(…… 题解列表 2024年02月22日 0 点赞 0 评论 219 浏览 评分:9.9
编写题解 2908: 白细胞计数(Java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2908: 白细胞计数 import java.util.Scanner; public class t_2908 { …… 题解列表 2024年02月01日 0 点赞 0 评论 66 浏览 评分:0.0
2908: 白细胞计数 摘要:``` #include using namespace std; const int N=310; double a[N]; int main() { int n; cin>>n;…… 题解列表 2023年12月24日 0 点赞 0 评论 83 浏览 评分:0.0
2908: 白细胞计数 摘要:``` #include using namespace std; const int N=310; double a[N]; int main(){ int n; cin>…… 题解列表 2023年12月24日 0 点赞 0 评论 89 浏览 评分:9.9
题解 2908: 白细胞计数 摘要: #include using namespace std; int main(){ int n; double o; …… 题解列表 2023年12月08日 0 点赞 0 评论 83 浏览 评分:0.0
2908: 白细胞计数 摘要:``` #include using namespace std; const int N = 100010; double a[N]; int main(){ double sum =…… 题解列表 2023年12月02日 0 点赞 0 评论 110 浏览 评分:9.9
白细胞计数(C语言) 摘要:解题思路:注意事项: 还是感觉写的复杂了,希望有大佬看到了能指点指点参考代码:#include<stdio.h> #include<math.h> int main() { int n…… 题解列表 2023年11月11日 0 点赞 0 评论 113 浏览 评分:0.0