?? p33 while.ox
字號(hào):
#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);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -