1089 Ugly Numbers
Submit solution
Points:
100
Time limit:
1.0s
Memory limit:
32M
Problem types
Allowed languages
C, C++, Java, Python
Description
Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ... shows the first 11 ugly numbers. By convention, 1 is included. Write a program to find and print the n’th ugly number.
Input
Every integer number (≤1500)describing position of ugly number from 1.If integer number is 0,the process should end. Maybe there are 10000 integer numbers on input data.
Output
Every integer given should output a line as shown below, The th ugly number is . With replaced by the integer number and replaced by the number computed.
Sample
Input
5 16
Output
The 5th ugly number is 5.
The 16th ugly number is 25.
Comments