📄 list0703.cpp
字号:
// Listing 7.3
// Complex while statements
#include <iostream>
int main()
{
using namespace std;
unsigned short small;
unsigned long large;
const unsigned short MAXSMALL=65535;
cout << "Enter a small number: ";
cin >> small;
cout << "Enter a large number: ";
cin >> large;
cout << "small: " << small << "...";
// for each iteration, test two conditions
while (small < large && small < MAXSMALL)
{
if (small % 5000 == 0) // write a dot every 5k lines
cout << ".";
small++;
large-=2;
}
cout << "\nSmall: " << small << " Large: " << large << endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -