answersLogoWhite

0

Yes, it works similar to an IF statement using logical operators.

For instance this would work, but if either of the boolean values were false at the end of the loop it would leave the loop.

bool a = true;

bool b = true;

while (a && b)

{

//run code

}

or: while (exp1 exp2) dosomething

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

BlakeBlake
As your older brother, I've been where you are—maybe not exactly, but close enough.
Chat with Blake
EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra
ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi

Add your answer:

Earn +20 pts
Q: Can two expressions or conditioned be used in while statement?
Write your answer...
Submit
Still have questions?
magnify glass
imp