JAVA学习入门练习学习50题(含答案~).doc
《JAVA学习入门练习学习50题(含答案~).doc》由会员分享,可在线阅读,更多相关《JAVA学习入门练习学习50题(含答案~).doc(38页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、-_【程序 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 k,但 n 能被 k 整除,则应打印出 k 的
2、值,并用 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
3、表示,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:C;System.out.println(“等级为:“+grade); -_【程序 6】 题目:输入两个正
4、整数 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( “键入一个整数: “)
5、; 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 = 0 System.out.println(“应该提取的奖金是 “ + y + “万“); -_【程序 13】
6、 题目:一个整数,它加上 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 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;Syst
7、em.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=0; i-) System.out.print(chi);-_【
8、程序 25】 题目:一个 5 位数,判断它是不是回文数。即 12321 是回文数,个位与万位相同,十位与 千位相同。 import java.util.*; public class lianxi25 public static void main(String args) Scanner s = new Scanner(System.in);int a;doSystem.out.print(“请输入一个 5 位正整数:“);a = s.nextInt();while(a99999);String ss =String.valueOf(a);char ch = ss.toCharArray()
9、;if(ch0=ch4else System.out.println(“这不是一个回文数“); /这个更好,不限位数import java.util.*; public class lianxi25a public static void main(String args) Scanner s = new Scanner(System.in);boolean is =true;System.out.print(“请输入一个正整数:“);long a = s.nextLong();String ss = Long.toString(a);char ch = ss.toCharArray();in
10、t j=ch.length;for(int i=0; iZ) System.out.println(“输入错误,请重新输入“);ch=getChar();return ch; 【程序 27】 题目:求 100 之内的素数 /使用除 sqrt(n)的方法求出的素数不包括 2 和 3public class lianxi27 public static void main(String args) boolean b =false;System.out.print(2 + “ “);System.out.print(3 + “ “);for(int i=3; i aj) int t = ai;ai
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- JAVA 学习 入门 练习 50 答案
限制150内