c++找三位整数中的阿姆斯壮数

2021/5/2 12:25:41

本文主要是介绍c++找三位整数中的阿姆斯壮数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include<iostream>
using namespace std;
int main()
{
    int s,t,h;
    int Armstrong;
    for(Armstrong=100;Armstrong<=999;Armstrong++)
    {
        s=Armstrong%10;
        t=(Armstrong%100)/10;
        h=Armstrong/100;
        if(s*s*s+t*t*t+h*h*h==Armstrong)      cout<<Armstrong<<endl;
    }
    return 0;
}


这篇关于c++找三位整数中的阿姆斯壮数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程