【程序1】 :有一对兔子,从出生后第3个月起每个月都生一对兔子,小免子张长到第三个月后每个月 对子 假如兔子都不死,问每个月的兔子总数为多少 这是一个菲波拉契数列问题 public class lianxil public static void main() System.ouLprintln( 的兔子对 新 System.outprin("第2个月的兔子对数 intf1=1.f2=1.f,M=24: for(int i=3;i<=M;i++)( f=们- f2=f1+2: 1-6 System.out printn("第"+i+"个月的兔子对数:"+2; 【程序2】 题目:判断101-200之间有多少个素数,并输出所有素数 程序分析:判断素数的方法:用一个数分别去除2到sq(这个数),如果能被整除,则表明 此数不是素数,反之是素数。 public class lianxi2 public static oidmain() int count 0 for(int i=101:i<200:i+=2) boolean b=false for(intj=2;j<=Math.sqrt(i):j++) if(i%j=0){b=false;break; else b=true; if(b==true)(count++System.out.println(i); System..("素数个数是:"+count) 【程序3】 题目:打印出所有的"水仙花数“,所谓"水仙花数“是指一个三位数,其各位数字立方和 等干该数本身。例如:153是 一个"水仙花数",因为153=1的三次方+5的三次方+3的 public class lianxi03 public static void main(String]args){ int bl,b2,b3;
【程序 1】 题目:古典问题:有一对兔子,从出生后第 3 个月起每个月都生一对兔子,小兔子长到第三个月后每个月 又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? //这是一个菲波拉契数列问题 public class lianxi01 { public static void main(String[] args) { System.out.println("第 1 个月的兔子对数: 1"); System.out.println("第 2 个月的兔子对数: 1"); int f1 = 1, f2 = 1, f, M=24; for(int i=3; i<=M; i++) { f = f2; f2 = f1 + f2; f1 = f; System.out.println("第" + i +"个月的兔子对数: "+f2); } } } 【程序 2】 题目:判断 101-200 之间有多少个素数,并输出所有素数。 程序分析:判断素数的方法:用一个数分别去除 2 到 sqrt(这个数),如果能被整除, 则表明 此数不是素数,反之是素数。 public class lianxi02 { public static void main(String[] args) { int count = 0; for(int i=101; i<200; i+=2) { boolean b = false; for(int j=2; j<=Math.sqrt(i); j++) { if(i % j == 0) { b = false; break; } else { b = true; } } if(b == true) {count ++;System.out.println(i );} } System.out.println( "素数个数是: " + count); } } 【程序 3】 题目:打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其各位数字立方和 等于该数本身。例如:153 是一个 "水仙花数 ",因为 153=1 的三次方+5 的三次方+3 的 三次方。 public class lianxi03 { public static void main(String[] args) { int b1, b2, b3;
for(intm=101:m=90分的同学用A表示,6089分之 间的用B表示,60分以下的用C表示。 importjava.util. public class lianxi05 public static void main(String args) int x: char grade; Scanner sew canner(Sysiem n) System.out print("请输入一个成绩:"方 x=s.nextInt(): grade=x>=90?'A' :X>=60?B
for(int m=101; m k,但 n 能被 k 整除,则应打印出 k 的值,并用 n 除以 k 的商,作为新的正整数 你 n,重复执行第一步。 (3)如果 n 不能被 k 整除,则用 k+1 作为 k 的值,重复执行第一步。 import java.util.*; public class lianxi04{ public static void main(String[] args) { Scanner s = new Scanner(System.in); System.out.print( "请键入一个正整数: "); int n = s.nextInt(); int k=2; System.out.print(n + "=" ); while(k =90 分的同学用 A 表示,60-89 分之 间的用 B 表示,60 分以下的用 C 表示。 import java.util.*; public class lianxi05 { public static void main(String[] args) { int x; char grade; Scanner s = new Scanner(System.in); System.out.print( "请输入一个成绩: "); x = s.nextInt(); grade = x >= 90 ? 'A' : x >= 60 ? 'B
℃ System.outprint("等级为:"+grade)) 【程序6】 题目:输入两个正整数m和,求其最大公约数和最小公倍数。 体*在循环中 只要除数不等 0. 用较大数除以较小的数,将小的一个数作为下一轮循环的 大数, 取得的余数作为了 循环的较小的数,如此循环直到较小的数的值为0,返回较大 的数,此数即为最大公约数,最小公倍数为两数之积除以最大公约数。◆/ import java.util.* oublic class lianxi06 public static void main(){ nt a,b,m Scanner s new Scanner(System.in): System.out.print("键入一个整数:": a =s.nextInt(): System..out.print(("再键入一个整数:"方 s.nextlnt( deff cd new deff() m=cd.deff(a b): intn=a◆b/m: System..out.printn("最大公约数:"+m) System..outprintn"(最小公倍数:"+n class deff public int deff(intx,inty) if(x<y){ t=x: x=V v=t while(yI=0) if(x==y)return x else int k=x%y. x=V: y=k, } return x:
:'C'; System.out.println("等级为:"+grade); } } 【程序 6】 题目:输入两个正整数 m 和 n,求其最大公约数和最小公倍数。 /**在循环中,只要除数不等于 0,用较大数除以较小的数,将小的一个数作为下一轮循环的 大数,取得的余数作为下一轮循环的较小的数,如此循环直到较小的数的值为 0,返回较大 的数,此数即为最大公约数,最小公倍数为两数之积除以最大公约数。* / import java.util.*; public class lianxi06 { public static void main(String[] args) { int a ,b,m; Scanner s = new Scanner(System.in); System.out.print( "键入一个整数: "); a = s.nextInt(); System.out.print( "再键入一个整数: "); b = s.nextInt(); deff cd = new deff(); m = cd.deff(a,b); int n = a * b / m; System.out.println("最大公约数: " + m); System.out.println("最小公倍数: " + n); } } class deff{ public int deff(int x, int y) { int t; if(x < y) { t = x; x = y; y = t; } while(y != 0) { if(x == y) return x; else { int k = x % y; x = y; y = k; } } return x; }
【程序7】 题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 import java.util.; public class lianxi7 public static void main(String]args) int digital=0. int character=0 int other=0 int blank =0: charn ch=null: Scanner sc=new Scanner(System.in) Strings=sc.nextLine(). ch=s.toCharArray() for(int i=0:i=o&&ch=9的{ digital++ e由由=由>水&刀 }else if间ch="){ blank++; )else other ++ System.out printn("数字个数:"+digital); System.out printn("英文字母个数:"+character): System.空格个数:"+blank System.out printn(其他字符个数:"+ her) 【程序8】 题目:求=a+a aa+aaa+8照.a的值,其中a是一个数字。例如2+22+222+2222+22222(此 时共有5个数相加),几个数相加有键盘控制。 import java.util. public class lianxi08 public static void main(String args) longa,b=0,sum=0; Sca ner s=new Scanner(System.in): System.ou print("输入 a的值: " a=s.nextlnt(); System.outprint("输入相加的项数:"方 int n=s nextInt(): inti=0:
} 【程序 7】 题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。 import java.util.*; public class lianxi07 { public static void main(String[] args) { int digital = 0; int character = 0; int other = 0; int blank = 0; char[] ch = null; Scanner sc = new Scanner(System.in); String s = sc.nextLine(); ch = s.toCharArray(); for(int i=0; i= '0' && ch = 'a' && ch 'A' && ch <= 'Z') { character ++; } else if(ch == ' ') { blank ++; } else { other ++; } } System.out.println("数字个数: " + digital); System.out.println("英文字母个数: " + character); System.out.println("空格个数: " + blank); System.out.println("其他字符个数:" + other ); } } 【程序 8】 题目:求 s=a+aa+aaa+aaaa+aa...a 的值,其中 a 是一个数字。例如 2+22+222+2222+22222(此 时共有 5 个数相加),几个数相加有键盘控制。 import java.util.*; public class lianxi08 { public static void main(String[] args) { long a , b = 0, sum = 0; Scanner s = new Scanner(System.in); System.out.print("输入数字 a 的值: "); a = s.nextInt(); System.out.print("输入相加的项数:"); int n = s.nextInt(); int i = 0;
while(i<n) b=b+a; sum sum +b; a=a*10 ++: System.out.println(sum) 【程序9】 题目:一个数如果恰好等于它的因子之和,这个数就称为"完数"。例如6=十2十3.编 程找出1000以内的所有完数。 publie System.out printn("1到10O0的完数有:"方 for(nti=1:i<1000:i++){ intt=0 for(intj=1:j<=i/2:j++){ o i t=t+j: } if(t==i){ System.out.print(i+") 【程序10】 题目:一球从100米高度自由落下,每次落地后反跳回原高度的一半:再落下,求它在第 10次落地时,共经过多少米?第10次反弹多高? public class lianxil0 public static void main(String[]args){ double h =100.s=100. for(int i=1;i<++){ System.out.printn("经过路程:"+s, System.out.println("反弹高度:"+h/2): 【程序11】 题目:有1、2、3、4四个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? public class lianxill
while(i < n) { b = b + a; sum = sum + b; a = a * 10; ++ i; } System.out.println(sum); } } 【程序 9】 题目:一个数如果恰好等于它的因子之和,这个数就称为 "完数 "。例如 6=1+2+3.编 程 找出 1000 以内的所有完数。 public class lianxi09 { public static void main(String[] args) { System.out.println("1 到 1000 的完数有: "); for(int i=1; i<1000; i++) { int t = 0; for(int j=1; j<= i/2; j++) { if(i % j == 0) { t = t + j; } } if(t == i) { System.out.print(i + " "); } } } 【程序 10】 题目:一球从 100 米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在 第 10 次落地时,共经过多少米?第 10 次反弹多高? public class lianxi10 { public static void main(String[] args) { double h = 100,s = 100; for(int i=1; i<10; i++) { s = s + h; h = h / 2; } System.out.println("经过路程:" + s); System.out.println("反弹高度:" + h / 2); } } 【程序 11】 题目:有 1、2、3、4 四个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? public class lianxi11 {
public static void main(String]args) int count= for(intx=1;x0&&x10&&x40x=60) v=10*0.1+10*0.075+20*0.05+(X-40)0.03 else if(x>60&&x100) y=200.175+40*0.08+400.015+(x-100)*0.01 System.out printn(应该提取的奖金是"+y+"万")
public static void main(String[] args) { int count = 0; for(int x=1; x 0 && x 10 && x 20 && x 40 && x 60 && x 100) { y = 20 * 0.175 + 40 * 0.08 + 40 * 0.015 + (x - 100) * 0.01; } System.out.println("应该提取的奖金是 " + y + "万"); }
【程序13】 整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问 该数是多少 public class lianxil3 public statie void main(String]args){ for(intx=1:x31){ System.out print("输入错误,请重新输入!") while(e=1); for (int i=1;i<month;i++){ switch(i)
} 【程序 13】 题目:一个整数,它加上 100 后是一个完全平方数,再加上 168 又是一个完全平方数,请问 该数是多少? public class lianxi13 { public static void main(String[] args) { for(int x =1; x 12 || day 31) { System.out.println("输入错误,请重新输入!"); e=1 ; } }while( e==1); for (int i=1; i <month; i++) { switch (i) {
ase case 7 case 8 case 10 case 12: days=31 break. case 4: case 6 case9 days=30; break, case 2. if(year%400=0)ll(year%4=0&&year%1001=0){ 9 else days=28; break: d+=days, System.outprintln(year+"."+month+"."+day+"是这年的第"+(d+day)+"天。"方 class input public int input() int value=0: Scanner s=new Scanner(System.in). value=s.nextInt(). 【程序15】 题目:输入三个整数X,y,z,请把这三个数由小到大输出。 import java.util.; public static void main(String args) input fnc new input(); int x=0.y=0.z=0: System.outprint("输入第一个数字:"方
case 1: case 3: case 5: case 7: case 8: case 10: case 12: days = 31; break; case 4: case 6: case 9: case 11: days = 30; break; case 2: if ((year % 400 == 0) || (year % 4 == 0 && year % 100 != 0)) { days = 29; } else { days = 28; } break; } d += days; } System.out.println(year + "-" + month + "-" + day + "是这年的第" + (d+day) + "天。"); } } class input{ public int input() { int value = 0; Scanner s = new Scanner(System.in); value = s.nextInt(); return value; } } 【程序 15】 题目:输入三个整数 x,y,z,请把这三个数由小到大输出。 import java.util.*; public class lianxi15 { public static void main(String[] args) { input fnc = new input(); int x=0, y=0, z=0; System.out.print("输入第一个数字:");
x=fnc.input(): System..ouprint(("输入第二个数字:"方 y=fnc.input() System.outprint("输入第三个数字:"方 z=fnc.input(); if(x>y) intt=x. x=y, y=t; if(x>z) intt=x: x=Z z=t; if(y>){ intt=v: y=z System.outprint("三个数字由小到大排列为:"+x+"+y+"+z功; class input public int input({ int value=0; Scanner s new Scanner(System.in): value =s.nextInt(): 【程序16】 题目:输出9*9口诀 public class lianxi16{ oid main(String]args) for(int =1;<10;) for(int =1:=I+) System.out.print(j+"*+i+""+j*i+""); ifi*i<10)Svstem outprint(""): System.out.printn()
x = fnc.input(); System.out.print("输入第二个数字:"); y = fnc.input(); System.out.print("输入第三个数字:"); z = fnc.input(); if(x > y) { int t = x; x = y; y = t; } if(x > z) { int t = x; x = z; z = t; } if(y > z) { int t = y; y = z; z = t; } System.out.println( "三个数字由小到大排列为: "+x + " " + y + " " + z); } } class input{ public int input() { int value = 0; Scanner s = new Scanner(System.in); value = s.nextInt(); return value; } } 【程序 16】 题目:输出 9*9 口诀。 public class lianxi16 { public static void main(String[] args) { for(int i=1; i<10; i++) { for(int j=1; j<=i; j++) { System.out.print(j + "*" + i + "=" + j*i + " " ); if(j*i<10){System.out.print(" ");} } System.out.println(); } } }
【程序17】 :猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了 第二天早上又将剩下的桃子吃掉一半,又多吃 一个。以后每天 上都 吃了前 下 的一半零一个到第10天早上想再吃时,见只剩下一个桃子了,求第一天共摘了多少。 public class lianxil7 public static void main(String]args){ intx=上 for(int i=2:i<=10:++) X=(x+1)*2: System.out.printn("猴子第一天摘了·+x+"个桃子")方 、 【程序18】 题目:两个乒乓球队进行比赛,各出三人。甲队为a,b,c三人,乙队为x,y,z三人。已抽签决 定比赛名单。有人向队员打听比赛的名单。a说他不和x比,c说他不和Xz比,请编程序 找出三队赛手的名单。 static char[]n=x,y.); public static void main(String]args){ for (int i=0:i<m.length:i++) for (int j=0:j<n.leng x) continue: else if (m[i]='&&n[j]=y){ continue else if ((m[i]=='c&&n]=) Il(mi]- &&=z) continue. else if ((m[i]='b'&&n]==z) I(m可=b&&=y){ continue. else System.out.println(m]+"vs"+n[j) 【程序19】 题目:打印出如下图案(菱形 单单华本中
【程序 17】 题目:猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一 个 第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩 下 的一半零一个。到第10天早上想再吃时,见只剩下一个桃子了。求第一天共摘了多少。 public class lianxi17 { public static void main(String[] args) { int x = 1; for(int i=2; i<=10; i++) { x = (x+1)*2; } System.out.println("猴子第一天摘了 " + x + " 个桃子"); } } 【程序 18】 题目:两个乒乓球队进行比赛,各出三人。甲队为 a,b,c 三人,乙队为 x,y,z 三人。已抽签决 定比赛名单。有人向队员打听比赛的名单。a 说他不和 x 比,c 说他不和 x,z 比,请编程序 找出三队赛手的名单。 public class lianxi18 { static char[] m = { 'a', 'b', 'c' }; static char[] n = { 'x', 'y', 'z' }; public static void main(String[] args) { for (int i = 0; i < m.length; i++) { for (int j = 0; j < n.length; j++) { if (m[i] == 'a' && n[j] == 'x') { continue; } else if (m[i] == 'a' && n[j] == 'y') { continue; } else if ((m[i] == 'c' && n[j] == 'x') || (m[i] == 'c' && n[j] == 'z')) { continue; } else if ((m[i] == 'b' && n[j] == 'z') || (m[i] == 'b' && n[j] == 'y')) { continue; } else System.out.println(m[i] + " vs " + n[j]); } } } } 【程序 19】 题目:打印出如下图案(菱形) * *** *****