作业帮 > 综合 > 作业

怎样随机数生成一数组,长度为10,随机数为1~100的奇数,求最大值最小值,C#语言

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/11/06 03:47:45
怎样随机数生成一数组,长度为10,随机数为1~100的奇数,求最大值最小值,C#语言
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RandomArray
{
class Program
{
static void Main(string[] args)
{
int[] myRanArray = new int[10];
Random Ran = new Random();
for (int j = 0; j < 10; j++)
{
myRanArray[j] = 2 * Ran.Next(1,50) - 1;
}
Console.WriteLine("the Random Array is:");
int i=0;
int max = 0;
while (i < 10)
{
if (myRanArray[i] > max)
{
max = myRanArray[i];
}
Console.Write("{0} ",myRanArray[i]);
i++;
}
Console.WriteLine("\nThe max number of the array is:{0}",max);
Console.ReadKey();
}
}
}
我是初学者,见笑了.