2016年2月25日

java经典问题

摘要: //水仙花数 int a=0; for(int g=0;g<10;g++)//穷举个位数 { for(int s=0;s<10;s++)//穷举十位 { for(int b=1;b<10;b++)//穷举个位 { a=g+s*10+b*100; if(g*g*g+s*s*s+b*b*b==a) { 阅读全文

posted @ 2016-02-25 21:45 beens 阅读(133) 评论(0) 推荐(0) 编辑

导航