怎样随机数生成一数组,长度为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();
}
}
}
我是初学者,见笑了.
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();
}
}
}
我是初学者,见笑了.
怎样随机数生成一数组,长度为10,随机数为1~100的奇数,求最大值最小值,C#语言
c语言,长度为100的一维数组,初始值为100以内随机数,并求出最大值最小值平均数
c#写个类,定义一个含有10元素的数组,每个元素都是1-100的随机数.
设计一个数组,存放20个范围在(1,100)之间的随机数,每行显示五个.求该数组元素的平均值,最大值,最小值,
用excel 1) 性别采用随机生成数来确定,随机数的范围为0-10之间,根据随机数判断偶数为女,奇数为男.
用C语言编写:求元素个数为 10 的一维数组元素中的最大值、最小值和平均值.
C语言,生成二维数组随机数
在VB中生成有n(n≥10)个随机数、并求出这个数组元素中的最大值、最小值和他们的平均值
求元素个数为10的一维数组元素中的最大值和最小值.
c#有没有函数能生成不重复的随机数,比如1-10之间的不重复随机数?
c# 如何生成10位随机数
C# 生成1-20随机数 不重复