📄 p33 while.ox
字号:
#include <oxstd.h>
#include <oxprob.h>
main()
{
decl i;
i = 0;
while (i < 0)
{ print("Output when the check is at start: ", i); //Nothing will be printed
++i;
}
i = 0;
do
{ print("Output when the check is at end: ", i);
++i;
} while (i < 0);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -