码迷,mamicode.com
首页 >  
搜索关键字:水仙花数字    ( 5个结果
面试题编程题01-python打印水仙花数字
1 for i in range(100,1000): 2 a=int(i/100) 3 b=int((i/10)%10) 4 c=int(i%10) 5 if i==(a**3+b**3+c**3): 6 print(i) ...
分类:编程语言   时间:2019-05-19 12:33:35    阅读次数:120
用jsp打印出水鲜花数
for(int i=100;i<10000;i++){ //循环100到1000以内的数字 int a=i%10; //求三位数的个位 int b=i/10%10; //求三位数的十位 int c=i/10/10%10; //求三位数的百位 if((a*a*a)+(b*b*b)+(c*c*c)==i ...
分类:Web程序   时间:2018-06-07 20:46:29    阅读次数:215
求水仙花数字
一个三位数,它的各位数字的立方和等于其本身,比如:153=1^3+5^3+3^3。 ...
分类:其他好文   时间:2017-08-15 22:50:19    阅读次数:167
水仙花数
/*判断输出的数是否是水仙花数,把谓水仙花数是指一个数3位数, * 其各各位数字立方和等于其本身, 例如: 153 = 1*1*1 + 3*3*3 + 5*5*5 */ public class Demo { public static void main(String[] args) { num(... ...
分类:其他好文   时间:2017-04-12 03:07:24    阅读次数:147
求100到999之间水仙花的个数
题目:打印出所有的 水仙花数 ,所谓 水仙花数 是指一个三位数,其各位数字立方和等于该数本身。     例如:153是一个 水仙花数 ,因为153=1的三次方+5的三次方+3的三次方。 public static void main(String[] args) { System.out.println(Arrays.toString(getNarcissisticNumbe...
分类:其他好文   时间:2015-04-27 21:47:55    阅读次数:128
5条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!