Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

mine

using System;
using System.Collections.Generic;

public class MyClass
{
	public static void Main()
	{
		Random r = new Random();
		
		Console.WriteLine("Minecraft: What to do??? v1.0 \n");
		Console.WriteLine("Find out");
		Console.ReadKey();
		
		string[] choices = {"Slay some Creepers!", "Hunt down some cows!", "Go to the Nether!", "Brew some potions!"};
		Console.WriteLine(choices[r.Next(0, choices.Length)]);
		
		Console.ReadKey();
	}
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.