我被困在过去一篇关于嵌入式软件课程的论文中的一个问题上。
该问题提出以下问题:
Let n be the number of iterations of the while loop. Calculate an upper and lower bound on the value of n given that b <= bmax.
x=a
if x<1
then
x=1
end if
while x<b
loop
x=x+1
end
我认为上限是:n<=bmax 但我不明白如何计算下限。任何人都可以帮忙吗?
谢谢