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: Check whether a given number is an Ugly number or not

C++ Numbers: Exercise-1 with Solution

Write a program in C++ to check whether a given number is an Ugly number or not.

Pictorial Presentation:

C++ Exercises: Check whether a given number is an Ugly number or not

Sample Solution:

C++ Code :

# include <iostream>
# include <string>
using namespace std;
int main()
{
int n,x=0;
 cout << "\n\n Check whether a given number is an Ugly number:\n";
 cout << "----------------------------------------------------\n";
cout << "Input an integer number: ";
cin >> n;
      if (n <= 0) {  
            cout <<"Input a correct number.";  
        }
       while (n != 1) 
       {  
            if (n % 5 == 0) 
            {  
                n /= 5;  
            } 
            else if (n % 3 == 0) 
            {  
                n /= 3;  
            } 
            else if (n % 2 == 0) 
            {  
                n /= 2;  
            } 
            else 
            {  
                cout <<"It is not an Ugly number."<<endl; 
                x = 1;  
                break;  
            }  
        } 
		        if (x==0)
		        { 
                cout <<"It is an Ugly number."<<endl;
                }
}

Sample Output:

Check whether a given number is an Ugly number:                       
----------------------------------------------------                   
Input an integer number: 25                                            
It is an Ugly number.

Flowchart:

Flowchart: Check whether a given number is an Ugly number or not

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: C++ Numbers Exercises Home
Next: Write a program in C++ to check whether a given number is Abundant or not.

What is the difficulty level of this exercise?