>Will it be efficient too? Just curious!!
switches are efficient, and provide for better readability in most cases.
rather than having tons of if statements everything is just separated

Thanks,
Tyler Littlefield
email: [EMAIL PROTECTED]
web: tysdomain-com
Visit for quality software and web design.
skype: st8amnd2005

  ----- Original Message ----- 
  From: Saurabh Jain 
  To: [email protected] 
  Sent: Sunday, October 26, 2008 4:29 PM
  Subject: [c-prog] Re: multiple if statements




  --- In [email protected], "Corey" <[EMAIL PROTECTED]> wrote:
  >
  > I think a switch would be much better also depending on the rest of
  the code.

  Will it be efficient too? Just curious!!

  Cordially,
  Saurabh

  > 
  > On Sun, Oct 26, 2008 at 3:32 PM, michael.steven86
  > <[EMAIL PROTECTED]> wrote:
  > 
  > > I'm experiencing a problem with a multiple if statement. I have tried
  > > to use braces, but I must be doing something wrong. So, I have
  > > removed all braces in the pseudo-code below, in the hope that someone
  > > can help point out where I am going wrong:
  > >
  > >
  > > if (condition 1)
  > > calc1
  > > else if (condition 2)
  > > calc2
  > > else if (condition 3)
  > > calc3
  > > else if (condition 4)
  > > calc4
  > > else
  > > calc5
  > >
  > > I get 2 error messages stating that I have misplaces else statements
  > > after calc3 and calc4.
  > 
  > You should still post the actual code, not pseudo-code. Depending on
  > how your code is structured, you might be able to convert this into a
  > switch statement.
  > 
  > -- Brett
  > ----------------------------------------------------------
  > "In the rhythm of music a secret is hidden;
  > If I were to divulge it, it would overturn the world."
  > -- Jelaleddin Rumi
  > 
  > 
  > 
  > 
  > [Non-text portions of this message have been removed]
  >



   

[Non-text portions of this message have been removed]

Reply via email to