C++ Program using constructor overloading to display the reverse of a number
Write a C++ Program to display the reverse of a number using the constructor overloading.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | #include<iostream> using namespace std; class T4Tutorials { private: int i; public: T4Tutorials(int n) { cout<<endl<<"The reverse of the Entered number: "; for(i=n;n>0;n=n/10) { cout<<n%10; } } T4Tutorials(long int a) { cout<<endl<<" The reverse of the Entered number: "; for(i=a;a>0;a=a/10) { cout<<a%10; } } }; int main() { int choice; cout<<"Enter choice: "; cin>>choice; switch(choice) { case 0: { int n; cout<<"Enter a number to Display T4Tutorials: "; cin>>n; T4Tutorials r(n); break; } case 1: { long int a ; cout<<"Enter Number to Display T4Tutorials: "; cin>>a; T4Tutorials r(a); break; } default: cout<<"Invilide Choice:"; } } |
Output
Enter number to reverse: 569
The reverse of the Entered number: 965