C++ Exercises: Check whether a given number is an Ugly number or not
Write a program in C++ to check whether a given number is an Ugly number or not.
Visual Presentation:

Sample Solution:
C++ Code :
Sample Output:
Check whether a given number is an Ugly number: ---------------------------------------------------- Input an integer number: 25 It is an Ugly number.
Flowchart:

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?