using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; //Namespace namespace Testapp { //Class class Program { //Function static void Main(string[] args) { //Starting point of everything Console.WriteLine("Hello and welcome to the MINECRAFT QUIZ made by 2lol555!"); Console.WriteLine("I will ask you Five simple questions and you answer with A B and C."); Console.WriteLine("What was notch doing when he made a creeper?"); Console.WriteLine("A. He was modeling a cow."); Console.WriteLine("B. He was just qwirking around with stuff."); Console.WriteLine("C. He did it on purpose."); ConsoleKeyInfo keyinfo = Console.ReadKey(); if (keyinfo.KeyChar == ('a')) { Console.WriteLine("Correct"); Console.WriteLine("Ok next question"); Console.WriteLine("How deep do you have to go to find diamonds?"); Console.WriteLine("A. From level 30 and lower."); Console.WriteLine("B. From level 10 and lower"); Console.WriteLine("C. From Level 15 and lower"); ConsoleKeyInfo keyinfoq2 = Console.ReadKey(); if (keyinfoq2.KeyChar == ('c')) { Console.WriteLine("Correct"); Console.WriteLine("Next question"); Console.WriteLine("What is the default minecraft character called?"); Console.WriteLine("A. Fred"); Console.WriteLine("B. Bob"); Console.WriteLine("C. Steve"); ConsoleKeyInfo keyinfoq3 = Console.ReadKey(); if (keyinfoq3.KeyChar == ('c')) { Console.WriteLine("Correct"); Console.WriteLine("Lets go to the next question!"); } else { Console.WriteLine("Wrong try again!"); } } else { Console.WriteLine("Wrong try again!"); } } else { Console.WriteLine("Wrong try again!"); } Console.WriteLine("Made by 2lol555!"); Console.WriteLine("Official source code download on:"); Console.WriteLine(""); Console.WriteLine("My youtube channel:"); Console.WriteLine("www.youtube.com/minecraftmoovies"); Console.WriteLine("Thanks for playing!"); Console.WriteLine("Copyright: 2lol555"); } } }