编程介的小学生
2017-09-20 02:19Ugly Numbers
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, ...
shows the first 10 ugly numbers. By convention, 1 is included.
Given the integer n,write a program to find and print the n'th ugly number.
Input
Each line of the input contains a postisive integer n (n <= 1500).Input is terminated by a line with n=0.
Output
For each line, output the n’th ugly number .:Don’t deal with the line with n=0.
Sample Input
1
2
9
0
Sample Output
1
2
10
- 点赞
- 回答
- 收藏
- 复制链接分享
1条回答
为你推荐
- 在我的代码中安全完成goroutine的正确方法是什么?
- channel
- goroutine
- 1个回答
- 斐波那契封闭中
- closures
- fibonacci
- 7个回答
- 新的去; 如何使用数学/大
- it技术
- 互联网问答
- IT行业问题
- 计算机技术
- 编程语言问答
- 1个回答
- 如何切换布尔值?
- function
- numbers
- php
- 8个回答
- PHP:根据长度然后分隔符将字符串拆分为数组
- php
- 2个回答
换一换