p33 while.ox
来自「时间序列分析中著名的OxMetrics软件包」· OX 代码 · 共 17 行
OX
17 行
#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 + =
减小字号Ctrl + -
显示快捷键?