首頁  >  文章  >  後端開發  >  如何使用 C# 列印從 1 到 1000 的所有阿姆斯壯數字?

如何使用 C# 列印從 1 到 1000 的所有阿姆斯壯數字?

王林
王林轉載
2023-09-02 17:01:04626瀏覽

如何使用 C# 打印从 1 到 1000 的所有阿姆斯特朗数字?

To display Armstrong numbers from 1 to 100, firstly use a while loop.

Example

while (val <= 1000) {
}

Now inside the while loop, set conditions for first, second and third digit.

Example

d1 = val - ((val / 10) * 10);
d2 = (val / 10) - ((val / 100) * 10);
d3 = (val / 100) - ((val / 1000) * 10);

Since, Armstrong number checks for the cube of all the digits.

Example

res = (d1 * d1 * d1) + (d2 * d2 * d2) + (d3 * d3 * d3);
if (res == val) {
   Console.WriteLine(temp);
}

rrreee

如果一個數字的每個位數的立方和等於該數字本身,則該數字是一個阿姆斯特朗數,例如,153。 ###

以上是如何使用 C# 列印從 1 到 1000 的所有阿姆斯壯數字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除