码迷,mamicode.com
首页 >  
搜索关键字:水仙花数    ( 509个结果
水仙花数
#include<stdio.h> int main(){ int a, b, c, i; while (1) { scanf("%d", &i); if (i >= 100 && i<1000) { a = i / 100; b = i / 10 % 10; c = i % 10; if (a*a ...
分类:其他好文   时间:2018-05-28 14:55:31    阅读次数:111
用js写水仙花数
...js //输入一个三位数,水仙花数就是个位的三次方+十为的三次方+百位的三次方之和等于本身 console.log('请输入一个三位数:'); let a = readline.question(); if (a > 100 && a <= 999) { if (parseInt(a / 10 ...
分类:Web程序   时间:2018-05-19 14:46:19    阅读次数:265
打印三位数水仙花数
public class TestShui{ public static void main(String[] args){ for(int i=100;i<1000;i++){ if(i==(i/100)*(i/100)*(i/100)+(i%100/10)*(i%100/10)*(i%100/1 ...
分类:其他好文   时间:2018-05-18 22:24:43    阅读次数:180
51nod 1016 水仙花数
大水仙花数模板+1…… #include<stdio.h> #include<math.h> #include<queue> #include<vector> #include<stack> #include<set> #include<string.h> #include<iostream> #i ...
分类:其他好文   时间:2018-05-14 16:54:03    阅读次数:188
小甲鱼Python第十七讲课后习题
1、分清楚形参和实参 2、函数文档:是函数的一部分,于解释不同,使用help(函数名)或者 函数名__doc__可以查看到 3、关键字参数(在一个函数的参数较多的时候作用比较明显): 给参数的名字下定义,例如: def F(name,words) 如下两种引用的方法是等价的 F(A,B) = F(w ...
分类:编程语言   时间:2018-05-10 12:12:39    阅读次数:371
【python练习题】程序13
#题目:打印出所有的"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个"水仙花数",因为153=1的三次方+5的三次方+3的三次方。 for i in range(100,1000): x = int(i / 100) y = int((i - x*100... ...
分类:编程语言   时间:2018-04-29 15:21:38    阅读次数:167
使用JS打印水仙花数
/* 水仙花数是一种特殊的三位数,它的特点就是,每个数位的立方和,等于它本身。 比如 153 就是水仙花数。因为: 13+53 +33 = 153 100~999 之内,只有 4 个水仙花数,请找出来。*/ var num=100; while(num")} num++; } ...
分类:Web程序   时间:2018-04-11 21:39:49    阅读次数:842
JS for循环小题2
********** * ** ******* **** *** ** * ********** * *** ************ 2.输入年份,再输入月份,弹出这个月有多少天? 三、1000以内的水仙花数 (三位数 各个数字的立方和等于本身 例如 1*1*1 + 5*5*5 + 3*3*3 = ...
分类:Web程序   时间:2018-04-10 13:44:21    阅读次数:199
用c#语言编写水仙花数
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ConsoleApplication1 { class ...
分类:编程语言   时间:2018-04-09 21:13:18    阅读次数:262
509条   上一页 1 ... 19 20 21 22 23 ... 51 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!