vote up 0 vote down star

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");


        }
    }
}
flag
If you're not being forced into a statically typed language such as c# for a class or something, might I recommend starting your programming experience with a language such as Ruby or Python to ease the transition from Engrish? – ascalonx Mar 14 at 6:06
I think it's healthy to start with static types. It means the compiler can help you. Dynamic typing is great, but has its own more subtle pitfalls (e.g. runtime failures in cases you might not have tested) – slim Mar 16 at 13:51

2 Answers

vote up 2 vote down

Try if (Int32.Parse(userInput) > 100)
You're trying to compare a string returned by Console.ReadLine() with an integer - that's why the compiler is cribbing.

Although a more robust approach .. now that I think of it would be to use Integer.TryParse

int parsedInt;
bool bResult = Int32.TryParse(stringToParse, out parsedInt)

bResult will be true only if the conversion/parse operation succeeded. This would handle rogue input. If successful, the out param contains the integer value you need.

link|flag
2  
"bResult"? gag, barf. No Hungarian notation!!! – Mark Maxham Mar 14 at 7:46
vote up 17 vote down

userInput is a string, and you're trying to compare it to an int (100). The user input needs to be converted to an int first.

int i;

// TryParse() returns true/false depending on whether userInput is an int

if (int.TryParse(userInput, out i))
{
    if (i > 100)
    {
    	Console.WriteLine("I hate myself");
    }
    else
    {
    	Console.WriteLine("I love myself");
    }
}
else
{
    Console.WriteLine("Input was not a valid number.");
}
link|flag
thankyou thank you – Brent Mar 14 at 6:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.