摘要:
public class t6 { public static void main(String[] args) { //题目二:我国古代数学家张邱建在《算经》中出了一道“百钱买百鸡”的问题, //题意是这样的:5文钱可以买一只公鸡,3文钱可以买一只母鸡,1文钱可以买3只雏鸡。 //现在用100文钱 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
{ 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> 阅读全文