Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Print a mystery series from 1 to 50

C++ Basic: Exercise-37 with Solution

Write a program in C++ to print a mystery series from 1 to 50.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;
 
int main() 
{
 cout << "\n\n Print a mystery series:\n";
	cout << "-------------------------\n";
	cout << " The series are: \n";	
   int nm1 = 1;
   while (true) 
   {
      ++nm1;
      if ((nm1 % 3) == 0) 
      continue;
      if (nm1 == 50) 
      break;
      if ((nm1 % 2) == 0) 
      {
         nm1 += 3;
      } 
      else 
      {
         nm1 -= 3;
      }
      cout << nm1 << " ";
   }
   cout << endl;
   return 0;
}

Sample Output:

 Print a mystery series:                                               
-------------------------                                              
 The series are:                                                       
5 4 2 7 11 10 8 13 17 16 14 19 23 22 20 25 29 28 26 31 35 34 32 37 41 4
0 38 43 47 46 44 49

Flowchart:

Flowchart: Print a mystery series from 1 to 50

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to test the Type Casting.
Next: Write a program in C++ that takes a number as input and prints its multiplication table upto 10.

What is the difficulty level of this exercise?