在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
题目描述使用C#编写一个控制台应用。输入10个正整数存入数组中,输出最大值、最小值和平均值
输入输入10个正整数
输出最大值、最小值和平均值
样例输入1
2
3
4
5
6
7
8
9
10
样例输出10
1
5.5
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 输出最大值最小值和平均值 { class Program { static void Main(string[] args) { int[] a = new int[10]; int max, min; double avg = 0,sum = 0; for(int i = 0; i < 10; ++ i) a[i] = Convert.ToInt32(Console.ReadLine()); max = min = a[0]; for (int i = 0; i < 10; ++i) { if (a[i] > max) max = a[i]; if (a[i] < min) min = a[i]; sum += a[i]; } avg = sum / 10; Console.WriteLine(max); Console.WriteLine(min); Console.WriteLine(avg); Console.ReadKey(); } } }
|
请发表评论