Sum of the series Using Constructor Overloading in C++

Sum of the series Using Constructor Overloading in C++.

The concept of using more than one constructor with the same name is called constructor overloading.

In this program, the constructor must obey one or both of the following rules.

  1. All constructors with the same name and having a different number of parameters.
    • T4Tutorials_Constructor_Overloading(int n) and another constructor as T4Tutorials_Constructor_Overloading(int num1,int num2).
  2. All constructors with the same name and have the same number of parameters but of different data types.
    • T4Tutorials_Constructor_Overloading(int n) and another constructor as T4Tutorials_Constructor_Overloading(double n).

Note: In this example, we are overloading the constructor with the following rule;

T4Tutorials_Constructor_Overloading(int n) and another constructor as T4Tutorials_Constructor_Overloading(int num1,int num2).

Program of Sum of the series in C++

Output

Please Enter 1 FOR Single parameter constructor.

Please Enter 2 FOR Multiple Paramter construcor.

1

You Have Selected Single Parameter constructor.

Please Enter a Number to find series :

5

111105