博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
随机生成数
阅读量:6151 次
发布时间:2019-06-21

本文共 418 字,大约阅读时间需要 1 分钟。

#include<stdio.h>

#include<stdlib.h>
#include<time.h>

void main()

{
time_t ts;
srand((unsigned int)time(&ts));
int a[10];
for (int i = 0; i < 10; i++)
{
a[10] = rand() % 100;
printf("\n%d,%x",a[10],&a[10]);
}
int all = 0;
double total = 0.0;
for (int i = 0; i < 10; i++)
{
all += a[10];

}

total = all;
total /= 10;
printf("\n和=%d,平均值=%f", all, total);

getchar();
}

转载于:https://www.cnblogs.com/minTTremor/p/9170409.html

你可能感兴趣的文章
try--catch--finally中return返回值执行的顺序(区别)
查看>>
【转】聚集索引和非聚集索引的区别
查看>>
【转】名企HR教你如何过网申
查看>>
【C#】性能计数器
查看>>
cifs协议端口
查看>>
开始学习php了
查看>>
我的友情链接
查看>>
Linux系统下Apache的安装、启动等初级操作
查看>>
监听JVM的几个命令(可用于linux 本机)
查看>>
CentOS 安装Open×××
查看>>
工作总结与未来展望
查看>>
Linux 虚拟网卡配置
查看>>
【MySQL】安装MySQL
查看>>
linux6.4DNS辅助
查看>>
一次大意引发的“大”故障
查看>>
android开发——手机短信功能
查看>>
spec文件一例
查看>>
scala学习笔记一_函数function
查看>>
Shared Pool简述
查看>>
OPENCART 2.X 自适应主题模板 ABC-0629
查看>>