摘要: public class t7 { public static void main(String[] args) { //题目三:这是经典的"百马百担"问题,有一百匹马,驮一百担货, //大马驮3担,中马驮2担,两只小马驮1担,问有大,中,小马各几匹? for(int a=0;a<33;a++) { 阅读全文
posted @ 2016-02-25 16:23 什么玩楞啊,我叫旺仔 阅读(915) 评论(0) 推荐(0) 编辑
摘要: public class t6 { public static void main(String[] args) { //题目二:我国古代数学家张邱建在《算经》中出了一道“百钱买百鸡”的问题, //题意是这样的:5文钱可以买一只公鸡,3文钱可以买一只母鸡,1文钱可以买3只雏鸡。 //现在用100文钱 阅读全文
posted @ 2016-02-25 16:18 什么玩楞啊,我叫旺仔 阅读(316) 评论(0) 推荐(0) 编辑
摘要: public class t5 { //水仙花数 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) { S 阅读全文
posted @ 2016-02-25 16:05 什么玩楞啊,我叫旺仔 阅读(185) 评论(0) 推荐(0) 编辑
摘要: public class t5 { //折纸多少次能达到 8848米,纸的厚度0.08毫米 public static void main(String[] args) { double d=0.08; int i=0; while(d<8848000) { d*=2; i++; System.ou 阅读全文
posted @ 2016-02-25 16:04 什么玩楞啊,我叫旺仔 阅读(159) 评论(0) 推荐(0) 编辑
摘要: { public static void main(String[] args) { int a=10; int b=20; System.out.println("a="+a+"b="+b); string c=(a==b)?"a等于b":(“a不等于b”+“\t”+"两数中较大的是:")+(a> 阅读全文
posted @ 2016-02-25 09:18 什么玩楞啊,我叫旺仔 阅读(117) 评论(0) 推荐(0) 编辑