当前位置:编程学习 > C/C++ >>

C 语言的 水仙花数 实现代码:

#include <stdio.h>
  int main(void)
  {
  int a,b,c;
  for(a=1;a<=9;a++)
  for(b=0;b<=9;b++)
  for(c=0;c<=9;c++)
  if(100*a+10*b+c==a*a*a+b*b*b+c*c*c)
  printf("%d%d%d ",a,b,c);
  return 0;

  }

#include<iostream>

  using namespace std;

  int main()

  {int a,q,w,e;

  for(a=100;a<1000;++a)

  {q=a/100;

  w=(a-q*100)/10;

  e=(a-q*100-w*10);

  if(a==q*q*q+w*w*w+e*e*e)

  cout<<a<<"是水仙花数"<<endl;};

  return 0;

  }

补充:软件开发 , C语言 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,