Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a beginner in programming, and i'm really wondering what's my mistake here :

static void Main(string[] args)
{
    int a = int.Parse(Console.ReadLine());
    int b = int.Parse(Console.ReadLine());
    int c = int.Parse(Console.ReadLine());

    if ((a > b) && (a > c))
    {
       Console.WriteLine(a);
    }
    else
    {
       if ((b > a) && (b > c)) ;
       {
          Console.WriteLine(b);
       }
       else
       {
          Console.WriteLine(c);
       }
    }
}
share|improve this question
See this thread for why your semicolon after the if statement is incorrect. – Sandra Walters Dec 12 '12 at 19:40
In the line if ((b > a) && (b > c)) you don't need the (b > a). You already know a is not the largest, you only care about b and c. – Servy Dec 12 '12 at 19:41

2 Answers

if ((b > a) && (b > c)) ;

Remove the ;

share|improve this answer
Thanks, mate!(: – user1866925 Dec 12 '12 at 19:42
@user1866925 you're welcome :) – BlackBear Dec 12 '12 at 19:43
2  
+9 WTF That's ridiculous. – Fuex Dec 12 '12 at 19:52
@Fuex LOOL yeah I know xD – BlackBear Dec 12 '12 at 19:52

You can't use in your if condition ;. Remove it.

if ((b > a) && (b > c))
{
      Console.WriteLine(b);
}

And you need one more } end of you code.

Edit: Actually you can use ; with your if condition. For example;

if ((b > a) && (b > c));

is equal

if ((b > a) && (b > c))
{

}
share|improve this answer
@Servy I updated it. Thank you. – Soner Gönül Dec 12 '12 at 19:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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