编程及软件开发解决方案库

2000万优秀解决方案库,覆盖所有编程及软件开发类,极速查询

今日已更新 1104 篇代码解决方案

  • 1:51Nod 1016 水仙花数 V2(组合数学,枚举打表法)

    1016 <em>水仙</em>花数 V2               基准时间限制:1 秒 空间限制:131072 KB 分值: 160        难度:6级算法题

    https://www.u72.net/daima/83mv.html - 2024-09-12 06:21:01 - 代码库
  • 2:Tips_of_JS 之 利用JS实现水仙花数的寻找与实现斐波那契数列

    一、<em>水仙</em>花数1、啥是<em>水仙</em>花数?<em>水仙</em>花数是指一个 n 位正整数 ( n≥3 ),它的每个位上的数字的 n 次幂之和等于它本身。

    https://www.u72.net/daima/87xk.html - 2024-09-12 11:42:22 - 代码库
  • 3:打印出所有的"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身。

    package com.mumu.ready;public class Daffodils {        // 题目:打印出所有的&quot;<em>水仙</em>花数&quot;,所谓

    https://www.u72.net/daima/chva.html - 2024-07-10 17:58:21 - 代码库
  • 4:杭州电子科技大学Online Judge 之 “水仙花数(ID2010)”解题报告

    杭州电子科技大学Online Judge 之 “<em>水仙</em>花数(ID2010)”解题报告巧若拙(欢迎转载,但请注明出处:http://blog.csdn.net/qiaoruozhuo

    https://www.u72.net/daima/nku65.html - 2024-08-04 00:49:33 - 代码库
  • 5:条件结构的实例-水仙花数、猜拳游戏、回文数字

    1.判断输入的数是否为<em>水仙</em>花数int num,ge,shi,bai,he;  //声明变量   printf(&quot;请输入三位数&quot;)

    https://www.u72.net/daima/7vbr.html - 2024-09-10 02:57:28 - 代码库
  • 6:水仙花数

                        #include &lt;stdio.h&gt;int main(void){ int bw,sw,gw; int i; int count=0; for(i=100;i&lt;=999;i++){  bw=i/100;  sw=i%100/10;  gw=i%10;  if(bw*bw*bw+s

    https://www.u72.net/daima/ksf3.html - 2024-07-06 22:47:45 - 代码库
  • 7:水仙花数

                         #include &lt;iostream&gt;using namespace std;int main( ){    int n,a,b,c;     for (a=1; a&lt;=9;a++)         for (b=0; b&lt;=9; b++)

    https://www.u72.net/daima/uwk2.html - 2024-07-14 05:12:34 - 代码库
  • 8:水仙花 程序

                        using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{    class Program    {

    https://www.u72.net/daima/3e99.html - 2024-07-21 18:57:55 - 代码库
  • 9:水仙花数

                        #include &lt;stdlib.h&gt;#include &lt;vector&gt;#include &lt;iostream&gt;#include &lt;math.h&gt;#include &quot;oj.h&quot;using namespace std;// 功能:判断输入 nValue 是

    https://www.u72.net/daima/ncz95.html - 2024-08-07 22:28:34 - 代码库
  • 10:打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其各位数字立方和等于该数本身。

    ---恢复内容开始---  ---恢复内容结束---打印出所有的 &quot;<em>水仙</em>花数 &quot;,所谓 &quot;<em>水仙</em>花数 &quot;是指一个三位数,其各位数字立方和等于该数本身

    https://www.u72.net/daima/hh05.html - 2024-08-13 04:42:03 - 代码库
  • 11:使用C#语言实现输出1000以内的水仙花数

    所谓<em>水仙</em>花数,是指一个n位数(n&gt;=3),它的每个位上的数字的n次幂之和等于它本身,例如:153=13+53+33。

    https://www.u72.net/daima/nzczv.html - 2024-09-21 23:03:25 - 代码库
  • 12:用vs来写一段判断是不是水仙花数的代码

    总所周知<em>水仙</em>花数是指一个n位正整数(n&gt;=3),它们的每位数上的数字的n次幂次方之和等于它本身。(例如:1^3+5^3+3^3=153).

    https://www.u72.net/daima/nzh1r.html - 2024-09-21 16:07:05 - 代码库
  • 13:汉诺塔,水仙

                        #include &lt;iostream&gt;using namespace std;void hanno(char a,char b,char c,int s){    if(s==1)    {        cout&lt;&lt;a&lt;&lt;&quot;-------&quot;&lt;&lt;c&lt;&lt;endl;

    https://www.u72.net/daima/z1fn.html - 2024-08-12 17:32:59 - 代码库
  • 14:水仙花数(详细2

                          #include &lt;stdio.h&gt;int main(  ){    int a,b,c,s ;    s=0  ;for(a=1; a&lt;=9; a++)for(b=0; b&lt;=9; b++)for(c=0; c&lt;=9; c++)if(a+b+c==10 ||

    https://www.u72.net/daima/xx48.html - 2024-07-17 06:10:37 - 代码库
  • 15:水仙花数(详细1

                          #include &lt;stdio.h&gt;int main(  ){    int a,b,c,i;for(i=100;i&lt;1000;i++){   a=i/100 ;       //  百位    b=i/10%10 ;     //   十位    c

    https://www.u72.net/daima/xx54.html - 2024-07-17 06:12:12 - 代码库
  • 16:经典的水仙花问题

                        代码如下 :package ClassDemo; public class Homework01 {        public static void main(String[] args) {                int maxValue = http://www.mamicode.com/10

    https://www.u72.net/daima/ncarx.html - 2024-10-09 05:13:39 - 代码库
  • 17:水仙花数 学习笔记 for循环

                        class ShuiXianHua {        public static void main(String[] args) {                for(int i =100;i &lt; 1000; i++){                        int j1=i/100;                        int j2=(i-j1*100)/10;                       

    https://www.u72.net/daima/nvn5r.html - 2024-10-27 23:38:39 - 代码库
  • 18:写一个函数,判断一个正整数是否是水仙花数(扩展n位的自幂数)

    //参数number是待判断的正整数,n为正整数位数(3位则为<em>水仙</em>花数),满足条件则返回1,反之返回0bool isZiMiShu(int number, int

    https://www.u72.net/daima/sevn.html - 2024-08-21 07:26:46 - 代码库
  • 19:水仙花数(20)

                         1 #include&lt;iostream&gt; 2 #include&lt;cmath&gt; 3 using namespace std; 4 int main(){ 5     int i,j,n,p[10],q,sum; 6     cin&gt;&gt;n; 7     for(i=0;i&lt;=9;+

    https://www.u72.net/daima/ca2u.html - 2024-07-10 15:28:33 - 代码库
  • 20:6.2心得

    1、<em>水仙</em>花束编写一个求<em>水仙</em>花数的函数,求3位正整数的全部<em>水仙</em>花数中的次大值。 所谓<em>水仙</em>花数是指三位整数的各位上的数字的立方和等于该整数本身。

    https://www.u72.net/daima/ndrkv.html - 2024-09-29 20:13:02 - 代码库