标题:系统输出随机数求和与平均数!与大家共享!
取消只看楼主
zhangfeng
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2005-3-20
 问题点数:0 回复次数:0 
系统输出随机数求和与平均数!与大家共享!

using System; using System.Collections; class count { static void Main() { Console.WriteLine("P INPUT NUM YOU WANT:"); int a=int.Parse(Console.ReadLine()); int[] all=new int[a]; decimal sum=0; int b=0;

Random r=new Random(); ArrayList aa=new ArrayList(); for(decimal i=0;i<a;i++) { b=r.Next(0,100); Console.WriteLine(b+","); aa.Add(b); sum+=b; } Console.WriteLine("数组的和:"+sum); Console.WriteLine("平均数:"+sum/a); System.Threading.Thread.Sleep(10000); }

}

搜索更多相关主题的帖子: 随机数 平均数 sum Console 
2005-04-13 22:21



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-15586-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.270008 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved