码迷,mamicode.com
首页 > 编程语言 > 详细

小学生趣味C++编程第35课 水仙花数

时间:2020-04-14 00:31:22      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:c++   name   http   提取   namespace   com   nbsp   using   ret   

小学生c++编程资料

链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 
提取码:uqm9 

#include<iostream>
using namespace std;
int main()
{
  int ge,shi,bai,i;
  cout<<"水仙花数"<<endl; 
  for(i=100;i<1000;i++)
  {
    bai=i/100;
  	shi=(i/10)%10;
  	ge=i%10;
  	if (bai*bai*bai+shi*shi*shi+ge*ge*ge==i) 
      cout<<i<<"     "; 
  }
  return 0; 
}

  

小学生趣味C++编程第35课 水仙花数

标签:c++   name   http   提取   namespace   com   nbsp   using   ret   

原文地址:https://www.cnblogs.com/kixiaoyuan/p/12695142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!