网站首页 站内搜索

搜索结果

查询Tags标签: Armstrong%,共有 1条记录
  • 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<<e…

    2021/5/2 12:25:41 人评论 次浏览
扫一扫关注最新编程教程