📄 ch05.07.c
字号:
// note: no compiler available at this time to compile
#include <iostream>
int main()
{
for ( int ix = 0;
// assigns done true or false based on
// whether ix is equal to 10
bool done = ix == 10; ++ix )
cout << "ix: " << ix << endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -