Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- public class Program {
- public static void Main() {
- Console.WriteLine("Think of a question; and you shall get an answer.")
- Random randomVariable = new Random();
- int randomGenerate= randomVariable.Next(1,8);
- if (randomGenerate == 1)
- Console.WriteLine("Yes");
- if (randomGenerate == 2)
- Console.WriteLine("No");
- if (randomGenerate == 3)
- Console.WriteLine("Maybe");
- if (randomGenerate == 4)
- Console.WriteLine("Error");
- if (randomGenerate == 5)
- Console.WriteLine("lol idk");
- if (randomGenerate == 6)
- Console.WriteLine("Most likely");
- if (randomGenerate == 7)
- Console.WriteLine("Most unlikely");
- if (randomGenerate == 8)
- Console.WriteLine("Come again?");
- //this is my first non-python script in ages lol
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement