list0703.cpp

来自「teach yourself C++ in 21 days 第五版」· C++ 代码 · 共 32 行

CPP
32
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?