18 Star 133 Fork 63

编程语言算法集 / C-Sharp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
KrishnamurthyNumberChecker.cs 950 Bytes
一键复制 编辑 原始数据 按行查看 历史
Gerson Jr 提交于 2023-12-30 10:33 . Switch to file-scoped namespaces (#430)
using System;
namespace Algorithms.Numeric;
/// <summary>
/// A Krishnamurthy number is a number whose sum of the factorial of digits
/// is equal to the number itself.
///
/// For example, 145 is a Krishnamurthy number since: 1! + 4! + 5! = 1 + 24 + 120 = 145.
/// </summary>
public static class KrishnamurthyNumberChecker
{
/// <summary>
/// Check if a number is Krishnamurthy number or not.
/// </summary>
/// <param name="n">The number to check.</param>
/// <returns>True if the number is Krishnamurthy, false otherwise.</returns>
public static bool IsKMurthyNumber(int n)
{
int sumOfFactorials = 0;
int tmp = n;
if (n <= 0)
{
return false;
}
while (n != 0)
{
int factorial = (int)Factorial.Calculate(n % 10);
sumOfFactorials += factorial;
n = n / 10;
}
return tmp == sumOfFactorials;
}
}
C#
1
https://gitee.com/TheAlgorithms/C-Sharp.git
git@gitee.com:TheAlgorithms/C-Sharp.git
TheAlgorithms
C-Sharp
C-Sharp
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891