白细胞计数(java) 摘要:解题思路:第一个for循环用来给a数组赋值并且求出最大值,最小值,总和。第一个for循环结束后紧接着求出平均值。第二个for循环将数值给b数组(除了最大值和最小值)。 第三个for循环求出有效样本(即…… 题解列表 2023年05月12日 0 点赞 0 评论 390 浏览 评分:8.0
编写题解 2908: 白细胞计数 来一个c的,哈哈哈哈 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&n); double num[n]; for(int i=0;i<n;i…… 题解列表 2023年03月14日 0 点赞 0 评论 404 浏览 评分:9.9
2908: 白细胞计数 摘要:```cpp #include #include #include using namespace std; int main() { int n; float num…… 题解列表 2023年01月09日 0 点赞 1 评论 434 浏览 评分:9.9
2908: 白细胞计数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int n; float num=0; …… 题解列表 2022年11月04日 0 点赞 0 评论 600 浏览 评分:6.4