To display Armstrong numbers from 1 to 100, firstly use a while loop.
while (val <= 1000) { }
Now inside the while loop, set conditions for first, second and third digit.
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.
res = (d1 * d1 * d1) + (d2 * d2 * d2) + (d3 * d3 * d3); if (res == val) { Console.WriteLine(temp); }
rrreee
如果一個數字的每個位數的立方和等於該數字本身,則該數字是一個阿姆斯特朗數,例如,153。 ###以上是如何使用 C# 列印從 1 到 1000 的所有阿姆斯壯數字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!