Q:

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

0

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

Sample Output:

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

# 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;
                }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now