Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MySQL/PHP Database Applications

Authors: Jay Greenspan, Brad Bulger

1st Edition

ISBN: 978-0764535376

More Books

Students also viewed these Databases questions

Question

CL I P COL Astro- L(1-cas0) Lsing *A=2 L sin(0/2)

Answered: 1 week ago