263. 丑数
为保证权益,题目请参考 263. 丑数(From LeetCode).
解决方案1
CPP
C++
// 丑数 就是只包含质因数 2、3 和/或 5 的正整数。
#include <iostream>
using namespace std;
class Solution
{
public:
bool isUgly(int n)
{
if (n <= 0)
{
return false;
}
if (n == 1)
{
return true;
}
else if (n % 2 == 0)
{
return isUgly(n / 2);
}
else if (n % 3 == 0)
{
return isUgly(n / 3);
}
else if (n % 5 == 0)
{
return isUgly(n / 5);
}
else
{
return false;
}
}
};
int main()
{
Solution so;
cout << so.isUgly(1) << endl;
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44