我正在尝试用C ++编写一个函数,用于识别和打印从一个用户指定的范围内的Armstrong数字。它还返回有多少整数。它将读取的最大数字是9,999。
我遇到的问题是,它识别出的每个阿姆斯特朗号码高达8208,而不是9474,这两个号码都是阿姆斯特朗号码。这让我很困惑,因为我根据他们拥有的数字来处理数字,所以如果它成功识别8208,它也应该识别9474.它没有。
这是我的代码:
int isArmstrongNum(int range){
int count = 0;
int ones;
int tens;
int hundreds;
int thousands;
if(range < 1 || range > 9999){
cout << "invalid entry" << endl;
return 0;
}
for(int i = 1; i < range; i++){
if(i < 10){
if(pow(i, 1) == i){
count++;
cout << i << endl;
}
}
else if(i > 9 && i < 100){
ones = i % 10;
tens = (i - ones) / 10;
if(pow(ones,2) + pow(tens,2) == i){
count++;
cout << i << endl;
}
}
else if(i > 99 && i < 1000){
ones = i % 10;
tens = ((i % 100) - ones) / 10;
hundreds = (i - tens * 10 - ones) / 100;
if(pow(ones,3) + pow(tens, 3) + pow(hundreds,3) == i){
count++;
cout << i << endl;
}
}
else if(i > 999 && i < 10000){
ones = i % 10;
tens = ((i % 100) - ones) / 10;
hundreds = ((i % 1000) - tens*10 - ones) / 100;
thousands = (i - hundreds * 100 - tens * 10 - ones) / 1000;
if(pow(ones,4) + pow(tens, 4) + pow(hundreds, 4) +
pow(thousands, 4) == i){
count++;
cout << i << endl;
}
}
}
return count;
}
知道为什么会这样吗?感谢。
答案 0 :(得分:-1)
希望这有帮助!
#include <iostream>
#include <cmath>
using namespace std;
bool is_armstrong(int number)
{
int length=0,n=number,temp=0;
while(n>0)
{
length++;
n/=10;
}
n=number;
while(n>0)
{
temp+=pow(n%10,length);
n/=10;
}
if(temp==number)
return true;
return false;
}
int main()
{
int i,start_range=1,end_range=9999;
for(i=start_range;i<=end_range;i++)
{
if(is_armstrong(i))
cout<<i<<endl;
}
return 0;
}
Output:
1
2
3
4
5
6
7
8
9
153
370
371
407
1634
8208
9474