list0704.cpp

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

CPP
48
字号
// Listing 7.4 -  Demonstrates break and continue
#include <iostream>

int main()
{
   using namespace std;

   unsigned short small;
   unsigned long  large;
   unsigned long  skip;
   unsigned long target;
   const unsigned short MAXSMALL=65535;

   cout << "Enter a small number: ";
   cin >> small;
   cout << "Enter a large number: ";
   cin >> large;
   cout << "Enter a skip number: ";
   cin >> skip;
   cout << "Enter a target number: ";
   cin >> target;

   cout << "\n";

   // set up 3 stop conditions for the loop
   while (small < large && large > 0 && small < MAXSMALL)
   {
      small++;

      if (small % skip == 0)  // skip the decrement?
      {
         cout << "skipping on " << small << endl;
         continue;
      }

      if (large == target)    // exact match for the target?
      {
         cout << "Target reached!";
         break;
      }

      large-=2;
   }                   // end of while loop

   cout << "\nSmall: " << small << " Large: " << large << endl;
   return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?