using System.Collections.Generic;
namespace ConsoleApplication1
public static void Main(string[] args)
Random randthing = new Random();
int randomnum = randthing.Next(1, 100);
Console.Write("Write name please:\n");
name = Console.ReadLine();
Console.Write("Now write your age:\n");
agetemp = Console.ReadLine();
Int32.TryParse(agetemp,out age);
Console.Write("Okay " + name + " let's start this thing, considering you were born in " + (2014 - age) + "\nor was it " + (2015 - age) + " ?\nI really do not know, im a program after all.\n\n");
Console.Write("The wheel of.. well, the wheel gives you the number " + randomnum + "\n\n");
Console.Write("Is this number you were thinking of? Oh right I forgot to say you're supposed to think of a number, ehm, you know, lets just do this:\nIf your number is lower than " + randomnum + " write 'lower', if its the same write 'done', if its higher write 'higher'\n");
ahilowdo = Console.ReadLine();
if (ahilowdo == "done") newnum = 1;
if (ahilowdo == "lower") randomnum -= randthing.Next(1, 15);
if (ahilowdo == "higher") randomnum += randthing.Next(1, 15);
else Console.Write("Uh, you need to write 'higher', 'lower' or 'done'\n");
Console.Write("Im guessing your thinking of " + randomnum + "\n");
Console.Write("Oh I actually got it? O.o Sweet!\n Feel free to press any button to terminate me forever.");