1 Star 0 Fork 1

Chobits/C Code

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
get_statistics.c 966 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chobits 提交于 2023-02-27 23:38 . Refine [fgh].c code
#include <stdio.h>
struct statistics
{
int count;
double sum;
double mean;
double max;
double min;
};
struct statistics get_statistics(double arr[], int n)
{
struct statistics ret;
ret.count = n;
ret.sum = 0;
ret.max = arr[0];
ret.min = arr[0];
for (int i = 0; i < n; i++)
{
ret.max = ret.max > arr[i] ? ret.max : arr[i];
ret.min = ret.min < arr[i] ? ret.min : arr[i];
ret.sum += arr[i];
}
ret.mean = ret.sum / n;
return ret;
}
int main(void)
{
double arr[] = {1, 2, 3, 4, 5};
int arr_len = sizeof(arr) / sizeof(arr[0]);
for (int i = 0; i < arr_len; i++)
{
printf("%lf ", arr[i]);
}
printf("\n\n");
struct statistics ret = get_statistics(arr, arr_len);
printf("count:\t%d\nsum:\t%.2lf\nmean:\t%.2lf\nmax:\t%.2lf\nmin:\t%.2lf\n", ret.count, ret.sum, ret.mean, ret.max, ret.min);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ChobitsY/C-Code.git
git@gitee.com:ChobitsY/C-Code.git
ChobitsY
C-Code
C Code
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385