My program stops before checking the while loop condition?

1 次查看(过去 30 天)
My program stops before checking the while loop condition
while (c1> 1 * 10 ^ -2) && (c2> 1 * 10 ^ -1) && (iter <= 1) {}
when the program stops I have the following values: c1=0.012, c2=0.074 and iter = 1.
Thanks.

采纳的回答

Walter Roberson
Walter Roberson 2016-6-30
c2> 1 * 10 ^ -1 is not true for c2 = 0.074
  3 个评论
Walter Roberson
Walter Roberson 2016-6-30
You used && so the condition is only true if all parts of it are true. One part of it is false, so the entire condition is false. If you want to execute the body of the loop if any of the conditions are true, then use || instead of &&

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by