BiPOM Forum

General => Micro-IDE => Topic started by: Espallator on August 21, 2010, 07:54:30 am

Title: Using logical OR in a while statement?
Post by: Espallator 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!
Title: Re: Using logical OR in a while statement?
Post by: Espallator 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