每日一小练——Armstrong数

上得厅堂,下得厨房,写得代码,翻得围墙,欢迎来到睿不可挡的每日一小练!


题目:Armstrong数


内容:

在三位的正整数中,例如abc,有一些可以满足a^3+b^3+c^3=abc的条件,也就是说各个位数的立方和正好是该数本身,这些数称为Armstrong数。是编写一个程序求出所有的三位Armstrong数。


我的解法:上来没多想,打开vs2013就敲了起来,问题果然很简单,分分钟就超神。。奥,不对就解决了!Armstrong数在国内好像就叫做水仙花数,很多程序设计的课本后面都有这种类型的思考题,确实很简单!


[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include <iostream>  
  2. using namespace std;  
  3.   
  4. int _tmain(int argc, _TCHAR* argv[])  
  5. {  
  6.     bool armstrong(int x);  
  7.     for (int i = 100; i <= 999; i++)  
  8.     {  
  9.         if (armstrong(i))  
  10.             cout << i << endl;  
  11.     }  
  12.     getchar();  
  13.     return 0;  
  14. }  
  15.   
  16. bool armstrong(int x) //x应该是一个三位数  
  17. {  
  18.     bool result = false;  
  19.     int bai = x / 100;  
  20.     int shi = (x / 10) % 10;  
  21.     int ge = x % 10;  
  22.     if(x == (bai*bai*bai + shi*shi*shi + ge*ge*ge))  
  23.         result = true;  
  24.     return result;  
  25. }  

实验结果:






欢迎大家加入每日一小练,嘿嘿!

每天练一练,日久见功夫,加油!


            -End-

参考文献:《c语言名题精选百则》




欢迎大家加入每日一小练,嘿嘿!

每天练一练,日久见功夫,加油!


            -End-

上得厅堂,下得厨房,写得代码,翻得围墙,欢迎来到睿不可挡的每日一小练!


题目:Armstrong数


内容:

在三位的正整数中,例如abc,有一些可以满足a^3+b^3+c^3=abc的条件,也就是说各个位数的立方和正好是该数本身,这些数称为Armstrong数。是编写一个程序求出所有的三位Armstrong数。


我的解法:上来没多想,打开vs2013就敲了起来,问题果然很简单,分分钟就超神。。奥,不对就解决了!Armstrong数在国内好像就叫做水仙花数,很多程序设计的课本后面都有这种类型的思考题,确实很简单!


[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include <iostream>  
  2. using namespace std;  
  3.   
  4. int _tmain(int argc, _TCHAR* argv[])  
  5. {  
  6.     bool armstrong(int x);  
  7.     for (int i = 100; i <= 999; i++)  
  8.     {  
  9.         if (armstrong(i))  
  10.             cout << i << endl;  
  11.     }  
  12.     getchar();  
  13.     return 0;  
  14. }  
  15.   
  16. bool armstrong(int x) //x应该是一个三位数  
  17. {  
  18.     bool result = false;  
  19.     int bai = x / 100;  
  20.     int shi = (x / 10) % 10;  
  21.     int ge = x % 10;  
  22.     if(x == (bai*bai*bai + shi*shi*shi + ge*ge*ge))  
  23.         result = true;  
  24.     return result;  
  25. }  

实验结果:






欢迎大家加入每日一小练,嘿嘿!

每天练一练,日久见功夫,加油!


            -End-

参考文献:《c语言名题精选百则》




欢迎大家加入每日一小练,嘿嘿!

每天练一练,日久见功夫,加油!


            -End-

http://t.163.com/event/info/eventId/-1144540734352148539
http://t.163.com/event/info/eventId/-1380831433934155950
http://t.163.com/event/info/eventId/-1875535737496125649
http://t.163.com/event/info/eventId/-6559177916799982579
http://t.163.com/event/info/eventId/-1758233755107239396
http://t.163.com/event/info/eventId/8419645418519883936
http://t.163.com/event/info/eventId/4106104683427688514
http://t.163.com/event/info/eventId/265814796617629723
http://t.163.com/event/info/eventId/-6720320868608561247
http://t.163.com/event/info/eventId/-3042058047159298467
http://t.163.com/event/info/eventId/4932804694931803481
http://t.163.com/event/info/eventId/-3531282263528667605
http://t.163.com/event/info/eventId/-4940290335263030164
http://t.163.com/event/info/eventId/-501057883350631956
http://t.163.com/event/info/eventId/8677503823237438183
http://t.163.com/event/info/eventId/2374535509702946368
http://t.163.com/event/info/eventId/-17170793489126640
http://t.163.com/event/info/eventId/2044391061671403010
http://t.163.com/event/info/eventId/-2602060254739953332
http://t.163.com/event/info/eventId/-2507310319717042112
http://t.163.com/event/info/eventId/-5193595956710446011
http://t.163.com/event/info/eventId/2963191071843333397
http://t.163.com/event/info/eventId/5013152449550311775
http://t.163.com/event/info/eventId/2780513673758923884
http://t.163.com/event/info/eventId/-2700550548934385663
http://t.163.com/event/info/eventId/3782746520043431589
http://t.163.com/event/info/eventId/5077697089860009242
http://t.163.com/event/info/eventId/6327248580834351675
http://t.163.com/event/info/eventId/-7658018760342570526
http://t.163.com/event/info/eventId/-8663666233100564233
http://t.163.com/event/info/eventId/6269918703885596852
http://t.163.com/event/info/eventId/1509472778626948301
http://t.163.com/event/info/eventId/-4226323484902413054
http://t.163.com/event/info/eventId/-8083077985266163675
http://t.163.com/event/info/eventId/2959652651166501129
http://t.163.com/event/info/eventId/-3389908340199929505
http://t.163.com/event/info/eventId/7096835036787324294
http://t.163.com/event/info/eventId/-7462687248486372644
http://t.163.com/event/info/eventId/8947671059511391892
http://t.163.com/event/info/eventId/-3730380326279286617
http://t.163.com/event/info/eventId/3736173835568991462
http://t.163.com/event/info/eventId/8189963196049082465
http://t.163.com/event/info/eventId/8385654885154780407
http://t.163.com/event/info/eventId/1205839907785984512
http://t.163.com/event/info/eventId/3120746976439863938
http://t.163.com/event/info/eventId/-4436971320027909926
http://t.163.com/event/info/eventId/-7043320453294413818
http://t.163.com/event/info/eventId/-2184763664004290952
http://t.163.com/event/info/eventId/-7053621337549633118
http://t.163.com/event/info/eventId/3411431077206704774
http://t.163.com/event/info/eventId/2827288673330864104
http://t.163.com/event/info/eventId/-5223298576430660535
http://t.163.com/event/info/eventId/-7933054110940691537
http://t.163.com/event/info/eventId/7620804406287301154
http://t.163.com/event/info/eventId/-4042561512240543127
http://t.163.com/event/info/eventId/681643475340383039
http://t.163.com/event/info/eventId/-5269373035225655995
http://t.163.com/event/info/eventId/-7957328848128716307
http://t.163.com/event/info/eventId/2764721340930937899
http://t.163.com/event/info/eventId/8015183499399846124
http://t.163.com/event/info/eventId/-101278406222355417
http://t.163.com/event/info/eventId/-6505496468585865674
http://t.163.com/event/info/eventId/548844801029249513
http://t.163.com/event/info/eventId/3103984081840677732
http://t.163.com/event/info/eventId/150123058805159597
http://t.163.com/event/info/eventId/-3592401992738528770
http://t.163.com/event/info/eventId/-6029733184608414394
http://t.163.com/event/info/eventId/-7125144353066361913
http://t.163.com/event/info/eventId/3748247527264005811
http://t.163.com/event/info/eventId/1269938075815073862
http://t.163.com/event/info/eventId/8021271779243236321
http://t.163.com/event/info/eventId/619775837666456342
http://t.163.com/event/info/eventId/5984124324664110766
http://t.163.com/event/info/eventId/-492633532076658760
http://t.163.com/event/info/eventId/8851781118181155184
http://t.163.com/event/info/eventId/-7295863437801901191
http://t.163.com/event/info/eventId/3344373546684038239
http://t.163.com/event/info/eventId/-4469275487209212225
http://t.163.com/event/info/eventId/2394652956147174074
http://t.163.com/event/info/eventId/-6055121736789441036
http://t.163.com/event/info/eventId/3790272227634480678
http://t.163.com/event/info/eventId/-6734648740144813332
http://t.163.com/event/info/eventId/6888293692399899789
http://t.163.com/event/info/eventId/-4495691575276715463
http://t.163.com/event/info/eventId/5680337259040449662
http://t.163.com/event/info/eventId/1519607738267287191
http://t.163.com/event/info/eventId/7767546592594139792
http://t.163.com/event/info/eventId/7781446198787820746
http://t.163.com/event/info/eventId/160813363903501183
http://t.163.com/event/info/eventId/3278218742694545603
http://t.163.com/event/info/eventId/1418878690483980943
http://t.163.com/event/info/eventId/-8971257106937337366
http://t.163.com/event/info/eventId/8785700416342187344
http://t.163.com/event/info/eventId/-4673011058138391261
http://t.163.com/event/info/eventId/6587910658019279438
http://t.163.com/event/info/eventId/702428824718797127
http://t.163.com/event/info/eventId/-3973986000668553644
http://t.163.com/event/info/eventId/2189872712616509160
http://t.163.com/event/info/eventId/6741259265270299150
http://t.163.com/event/info/eventId/-3558431044318081354
http://t.163.com/event/info/eventId/-7897427727059126976
http://t.163.com/event/info/eventId/5827240698235201496
http://t.163.com/event/info/eventId/7939594377130224700
http://t.163.com/event/info/eventId/-1110497092242907231
http://t.163.com/event/info/eventId/3412220336990949568
http://t.163.com/event/info/eventId/3773195872172070559
http://t.163.com/event/info/eventId/6436111167051506666
http://t.163.com/event/info/eventId/-4481900690654149256
http://t.163.com/event/info/eventId/-3976734357547564767
http://t.163.com/event/info/eventId/17623162905845242
http://t.163.com/event/info/eventId/39519974047148206
http://t.163.com/event/info/eventId/4578579712087239910
http://t.163.com/event/info/eventId/-691286053851490069
http://t.163.com/event/info/eventId/932044595914088966
http://t.163.com/event/info/eventId/871687126695070350
http://t.163.com/event/info/eventId/-928277032105085175
http://t.163.com/event/info/eventId/-530267546454437578
http://t.163.com/event/info/eventId/1274706852327057550
http://t.163.com/event/info/eventId/1750087067484757028
http://t.163.com/event/info/eventId/4786732351573634067
http://t.163.com/event/info/eventId/-3723803883171411941
http://t.163.com/event/info/eventId/6348298087933721273
http://t.163.com/event/info/eventId/8899922060615324775
http://t.163.com/event/info/eventId/-5374772535963994970
http://t.163.com/event/info/eventId/3223104064781319880
http://t.163.com/event/info/eventId/509485369701639441
http://t.163.com/event/info/eventId/2275529979984071572
http://t.163.com/event/info/eventId/-5839382907432633116
http://t.163.com/event/info/eventId/-7724589707190048647
http://t.163.com/event/info/eventId/949999579116061541
http://t.163.com/event/info/eventId/-6472683669305275111
http://t.163.com/event/info/eventId/-6946553801982757010
http://t.163.com/event/info/eventId/-7664421844240183176
http://t.163.com/event/info/eventId/4793409540717765422
http://t.163.com/event/info/eventId/-7052495302431965912
http://t.163.com/event/info/eventId/5611943504059296151
http://t.163.com/event/info/eventId/3450757484477548669
http://t.163.com/event/info/eventId/2388002974792044559
http://t.163.com/event/info/eventId/8005441430945476464
http://t.163.com/event/info/eventId/7191898814841251387
http://t.163.com/event/info/eventId/1478652186430635989
http://t.163.com/event/info/eventId/-4562248110371787998
http://t.163.com/event/info/eventId/-679326513090824085
http://t.163.com/event/info/eventId/-5843166292245708875
http://t.163.com/event/info/eventId/-7866002998252824892
http://t.163.com/event/info/eventId/2056961780079119918
http://t.163.com/event/info/eventId/-6175046031488493338
http://t.163.com/event/info/eventId/-375050164387262129
http://t.163.com/event/info/eventId/-1285360368913519696
http://t.163.com/event/info/eventId/7644517526854975972
http://t.163.com/event/info/eventId/-4283471986756850424
http://t.163.com/event/info/eventId/367686615056090172
http://t.163.com/event/info/eventId/-1094786342746290505
http://t.163.com/event/info/eventId/1336332317844191681
http://t.163.com/event/info/eventId/-2135811451615666998
http://t.163.com/event/info/eventId/-8510012188954084905
http://t.163.com/event/info/eventId/-6212773244083452672
http://t.163.com/event/info/eventId/-634217566818975137
http://t.163.com/event/info/eventId/-1579561395145696917
http://t.163.com/event/info/eventId/-2921078121372992396
http://t.163.com/event/info/eventId/7404707911887842351
http://t.163.com/event/info/eventId/-8007665600893944024
http://t.163.com/event/info/eventId/4775594566473255131
http://t.163.com/event/info/eventId/3881640592367089443
http://t.163.com/event/info/eventId/5541704205130331549
http://t.163.com/event/info/eventId/1878253199100827381
http://t.163.com/event/info/eventId/-4277661598133953444
http://t.163.com/event/info/eventId/-5102231304877192413
http://t.163.com/event/info/eventId/7244171506808832828
http://t.163.com/event/info/eventId/-7996955782281956254
http://t.163.com/event/info/eventId/-2503578088420957322
http://t.163.com/event/info/eventId/1154679149404542670
http://t.163.com/event/info/eventId/-7315088396268865596
http://t.163.com/event/info/eventId/-4370136198136095909
http://t.163.com/event/info/eventId/-7735726367428833095
http://t.163.com/event/info/eventId/-5511540345332750636
http://t.163.com/event/info/eventId/-7622282872587448420
http://t.163.com/event/info/eventId/-2735006172170472486
http://t.163.com/event/info/eventId/-437221846208662387
http://t.163.com/event/info/eventId/-1373929107591903981
http://t.163.com/event/info/eventId/-5077721283975609660
http://t.163.com/event/info/eventId/-2589495881907507459
http://t.163.com/event/info/eventId/3704841441145775046
http://t.163.com/event/info/eventId/1616301136108678567
http://t.163.com/event/info/eventId/8182360935760848665
http://t.163.com/event/info/eventId/-3157828487409561399
http://t.163.com/event/info/eventId/5840394455130779408
http://t.163.com/event/info/eventId/-2977104669810129338
http://t.163.com/event/info/eventId/3392242382325603891
http://t.163.com/event/info/eventId/1786833176504209516
http://t.163.com/event/info/eventId/2109076840287151981
http://t.163.com/event/info/eventId/-7658961684645883491
http://t.163.com/event/info/eventId/-6026364084536520472
http://t.163.com/event/info/eventId/4515523583912704742
http://t.163.com/event/info/eventId/-6924553834219649291
http://t.163.com/event/info/eventId/3332166248053289682
http://t.163.com/event/info/eventId/2088938935609020798
http://t.163.com/event/info/eventId/7943315307356097164
http://t.163.com/event/info/eventId/8640936462044098251
http://t.163.com/event/info/eventId/-4662049534320293677
http://t.163.com/event/info/eventId/-958795524996179796
http://t.163.com/event/info/eventId/14222382399866706
http://t.163.com/event/info/eventId/6184660435678770698
http://t.163.com/event/info/eventId/7564469621893477069
http://t.163.com/event/info/eventId/-4065943696594737031
http://t.163.com/event/info/eventId/-8102685411381857271
http://t.163.com/event/info/eventId/-6021944029647298428
http://t.163.com/event/info/eventId/-4957910313275136214
http://t.163.com/event/info/eventId/1333641284842711317
http://t.163.com/event/info/eventId/-5977053925168120722
http://t.163.com/event/info/eventId/8258507924218722458
http://t.163.com/event/info/eventId/-4598512208388631327
http://t.163.com/event/info/eventId/-7999434040120021037
http://t.163.com/event/info/eventId/3417878407391828532
http://t.163.com/event/info/eventId/835932151577411472
http://t.163.com/event/info/eventId/7594190667515861892
http://t.163.com/event/info/eventId/3394785651914344405
http://t.163.com/event/info/eventId/-6061630637127344123
http://t.163.com/event/info/eventId/652865814066627653
http://t.163.com/event/info/eventId/-2325110854512312259
http://t.163.com/event/info/eventId/-3647561214794386461
http://t.163.com/event/info/eventId/2435934167424121794
http://t.163.com/event/info/eventId/-1934793993588372711
http://t.163.com/event/info/eventId/9136429169381451110
http://t.163.com/event/info/eventId/4539055076496174183
http://t.163.com/event/info/eventId/-1512573766020259528
http://t.163.com/event/info/eventId/-5135874508135907276
http://t.163.com/event/info/eventId/5749258262165551395
http://t.163.com/event/info/eventId/-6309342544799102598
http://t.163.com/event/info/eventId/8339096405987803008
http://t.163.com/event/info/eventId/1812144723940133677
http://t.163.com/event/info/eventId/-6978552984943180662
http://t.163.com/event/info/eventId/4618289456374163888
http://t.163.com/event/info/eventId/-2354331052737285813
http://t.163.com/event/info/eventId/156215858774750118
http://t.163.com/event/info/eventId/733891217359596152
http://t.163.com/event/info/eventId/9076407872020841845
http://t.163.com/event/info/eventId/-5314273140704663200
http://t.163.com/event/info/eventId/-5735986966078683074
http://t.163.com/event/info/eventId/964739149559312270
http://t.163.com/event/info/eventId/-5197018546727703316
http://t.163.com/event/info/eventId/-9041533549183282854
http://t.163.com/event/info/eventId/3250960270411389855
http://t.163.com/event/info/eventId/-758192236591481952
http://t.163.com/event/info/eventId/-1643146124357260676
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值