-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathUglyNumberSln.cs
36 lines (34 loc) · 914 Bytes
/
UglyNumberSln.cs
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
/* ==============================================================================
* 功能描述:UglyNumberSln
* 创 建 者:gz
* 创建日期:2017/5/26 12:23:33
* ==============================================================================*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Math.Lib
{
/// <summary>
/// UglyNumberSln
/// </summary>
public class UglyNumberSln
{
public bool IsUgly(int num)
{
if (num <= 0) return false;
if (num == 1) return true;
while (num >1)
{
if(num%2==0)
num /= 2;
else if (num%3 == 0)
num /= 3;
else if (num%5 == 0)
num /= 5;
else return false;
}
return true;
}
}
}