Answered step by step
Verified Expert Solution
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started