Author Topic: Using logical OR in a while statement?  (Read 6492 times)

Espallator

  • Guest
Using logical OR in a while statement?
« on: August 21, 2010, 07:54:30 am »
Can I use the logical OR operator in a while statement? How?
I tried like:
while(c != \'1\' || c != \'2\')
{...}
or
while((c != \'1\')||(c != \'2\'))
{...}


but it doesn\'t work. The weird thing is that
while(c != \'1\')
{...}

it works!

Espallator

  • Guest
Re: Using logical OR in a while statement?
« Reply #1 on: August 28, 2010, 07:57:14 am »
Quote
Can I use the logical OR operator in a while statement? How?
I tried like:
while(c != \'1\' || c != \'2\')
{...}
or
while((c != \'1\')||(c != \'2\'))
{...}


but it doesn\'t work. The weird thing is that
while(c != \'1\')
{...}

it works!

I solved it! I just changed || for && and its working. ;D