Why do you have 500 "Console.WriteLine" ?? Well not quite 500 but jeze, you still have quite a few! Use a single string, You seem to be in a class/new to programming so I'll help you with these: 1) No need to call write line 100 time unless you need to 2) The char '\n' is bad to use in .NET unlike some other other language's the new line char '\n' doesn't get converted by the compiler to the system's correct new line format. So there is a class called "Environment" which contains a "NewLine" property (the correct way to do a '\n' in .NET) which will decode to the correct new line string.
Console.WriteLine("Welcome to The Quiz Program!{0}"
+ " You can be quizzed on any of the following operators:{0}"
+ "\\t1) %\\t(modulus, or 'remainder'){0}"
+ "\\t2) \*\\t(multiplication){0}"
+ "\\t3) /\\t(integer division){0}"
+ "\\t4) /%\\t(integer division & modulus in a combined challenge!)"
+ "{0}{0}Choice (1,2,3,or 4):", Environment.NewLine);
-Spacix All your skynet questions[^] belong to solved