I can't seem to figure out how to print out what the user has entered for their password once their finished answering the questions.
I want to use 4 different for loops for upperCase, lowerCase, numbers, symbols,based on what the user has entered. If anyone has any different ideas please share. It would be a great help. I'm new to programming.
Here is what I have so far
string upperCase = ("ABCDEFGHIJKLMNOPQRSTUVWXYZ") ;
string lowerCase = ("abcdefghijklmnopqrstuvwxyz");
string numbers = ("1234567890" );
string specChac = ("!@#$%^&*():<>?/");
string randomPassword = upperCase + lowerCase + numbers + specChac;
string allPasswords = "randomPassword";
Random rnd = new Random();
Console.WriteLine("Welocme to the C# password generator! ");
Console.WriteLine("----------------------------------------");
Console.WriteLine("How many uppercase letters would you like in your password ?");
int upperAmount = int.Parse(Console.ReadLine());
Console.WriteLine("How many lowercase letters would you like in your password ?");
int lowerAmount = int.Parse(Console.ReadLine());
Console.WriteLine("How many numbers would you like in your password ?");
int numAmount = int.Parse(Console.ReadLine());
Console.WriteLine("How many special characters would you like in your password?");
int charAmount = int.Parse(Console.ReadLine());