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: Display the first 10 Catlan numbers

C++ Numbers: Exercise-15 with Solution

Write a program in C++ to display the first 10 Catlan numbers.

Pictorial Presentation:

C++ Exercises: Display the first 10 Catlan numbers

Sample Solution:

C++ Code :

#include<iostream>
using namespace std;
unsigned long int cataLan(unsigned int n)
{
    if (n <= 1) return 1;
    unsigned long int catno = 0;
    for (int i=0; i<n; i++)
        catno += cataLan(i)*cataLan(n-i-1);
    return catno;
}
int main()
{
 cout << "\n\n Find the first 10 Catlan numbers: \n";
 cout << " --------------------------------------\n";
  cout << " The first 10 Catlan numbers are: "<<endl;
    for (int i=0; i<10; i++)
        cout << cataLan(i) << " ";
  cout <<endl;		
    return 0;
}

Sample Output:

 Find the first 10 Catlan numbers:                                                                   
 --------------------------------------                                                              
 The first 10 Catlan numbers are:                                                                    
1 1 2 5 14 42 132 429 1430 4862

Flowchart:

Flowchart: Display the first 10 Catlan numbers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to display the first 10 Lucus numbers.
Next: Write a program in C++ to check a number is a Happy or not.

What is the difficulty level of this exercise?