I am not able to get this to run, because of the 1st line in the if statement. I am sure something needs to be converted, but I am not sure what.
My code:
using System;
using System.Collections.Generic;
using System.Text;
namespace xx
{
class Program
{
static void Main(string[] args)
{
string userInput;
Console.Write("what number do you choose: ");
userInput = Console.ReadLine();
if (userInput > 100)
Console.WriteLine("I hate myself");
else
Console.WriteLine("I love myself");
}
}
}
