Question: i have this program below which is job is to generate a 5 random digit number. how can it be adjusted so instead of generating

i have this program below which is job is to generate a 5 random digit number.

how can it be adjusted so instead of generating 5 digit numbers it must generate 5 characters and stored in an array(basicaly generate a random array containing 10 strings)

the code can in C SHARP

using System;

namespace assignment

{

class Program

{

static void Main(string[] args)

{

int[] x = new int[10];

Random r = new Random();

int i;

for (i = 0; i < x.Length; i++)

{

x[i] = r.Next(10000,99999);

Console.WriteLine("x[{0}] = {1}", i, x[i]);

}

}

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!