Java核心技术习题答案.doc
《Java核心技术习题答案.doc》由会员分享,可在线阅读,更多相关《Java核心技术习题答案.doc(88页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、-作者xxxx-日期xxxxJava核心技术习题答案【精品文档】Java核心技术习题答案马志强 张然 李雷孝 编清华大学出版社目 录第一章Java语言概述3第二章 Java语法基础4第三章 面向对象编程15第四章 数组38第五章 高级类特性45第六章 GUI编程51第七章 集合框架62第九章 集合框架77第十章 IO流81第十一章 JDBC访问数据库84第十二章 线程85第十三章 网络编程90第一章Java语言概述一、 选择题1-5 ABBBB 6-8 AAB 二、 填空题1. MyClass MyClass.class 2. String数组(String) 一3. javac A.java
2、 java A三、程序设计题1、搭建Java运行环境,并写一个Java程序打印输出“开始学习Java程序设计!”。1)首先安装JDK;2)配置环境变量path,classpath可配可不配;3)public class HelloWorldpublic static void main(String args)System.out.println(开始学习Java程序设计!); 2、修改下面四个Java源文件中的错误,使其能够编译和运行。:TestAnother1类不能再使用public修饰,一个源文件中只能有一个类或者接口用public修饰;:源文件中public修饰的类的名字为Testin
3、g2,和源文件名字不一致;:Test3类的main方法的形参类型为String;:Test4类的main方法必须使用static关键字修饰。第二章 Java语法基础一、 选择题 1-5 BCADB 6-9 DCCC二、 填空题1. abc ,a1, _abc, _1a, ab123 #a,const,$abc,1abc,if,$#1sa,$_a,_$q1 2. 题目出现问题:代码修改为 ch = (char) (ch+1);结果为B;如果直接System.out.println(ch+1);结果为98。 3.true(真) false(假) 5. 2 2 false 26.m*20/100 (
4、double)m*20/100三、 编程题1、由命令行输入一个成绩,使用switch结构求出成绩的等级。A:90100;B:8089;C:7079;D:6069;E:059。import java.util.Scanner;public class IfElseTest public static void main(String args) Scanner sc = new Scanner(System.in);int grade = sc.nextInt();if(grade100)System.out.println(aaaa);System.exit(0);int temp =(int
5、)Math.floor(grade/10);switch(temp)case 10:System.out.println(A);break;case 9:System.out.println(A);break;case 8:System.out.println(B);break;case 7:System.out.println(C);break;case 6:System.out.println(D);break;default:System.out.println(E);break;2、计算圆周率:PI44/3+4/5-4/7. .;打印出第一个大于小于的值。public class PI
6、Testpublic static void main(String args)double result=0.0;for(int i=1;i+)double m=4.0/(2*i-1);if(i%2)=0)result-=m;elseresult+=m;if(result3.1415 & result3.1416)System.out.println(result: +result);break;3、输入一个数据n,计算斐波那契数列(Fibonacci)的第n个值。斐波那契数列:1、1、2、3、5、8、13、21、34、。import java.util.Scanner;public cla
7、ss FibonacciTestpublic static void main(String args)Scanner sn=new Scanner(System.in);int num=sn.nextInt();int i=1;int n1=1,n2=1;while(i=num)if(i=1|i=2)n2=1;elseint temp=n2;n2=n1+n2;n1=temp;i+;System.out.println(n2);System.out.println(第+num+个值为:+n2);4、计算多项式1-1/3+1/5-1/7+1/9.的值。 1)要求出前50项和值。 2)要求出最后一
8、项绝对值小于1e-5的和值。public class SumTestpublic static void main(String args)double sum=0.0;for(int i=1;i=50;i+)if(i%2=0)sum=sum-1.0/(2*i-1);elsesum=sum+1.0/(2*i-1);System.out.println(前50项和值:+sum);double item=0.0;int j=1;sum=0.0;while(item0.00001)item=1.0/(2*j-1);if(j%2=0)sum-=item;elsesum+=item;j+;System.
9、out.println(最后一项绝对值小于1e-5的和值:+sum);5、产生100个0-999之间的随机整数,然后判断这100个随机整数哪些是素数,哪些不是?public class PrimeTest public static void main(String args) PrimeTest t = new PrimeTest();for(int i=0;i100;i+)int num = (int)(Math.random()*1000);if(t.isPrime(num)System.out.println(num+是素数!);elseSystem.out.println(num+不
10、是素数!);System.out.println();public boolean isPrime(int num)for(int i=2;i=num/2;i+)if(num%i=0)System.out.println(num+第一个被+i+整除!);return false;return true;6、在屏幕上打印出n行的金字塔图案,如,若n=3,则图案如下: * * *import java.util.Scanner;public class PrintStarpublic static void main(String args)Scanner sn=new Scanner(Syste
11、m.in);t();for(int i=1;i=rows;i+)for(int j=1;j=rows-i;j+)System.out.print( );for(int k=1;k=2*i-1;k+)System.out.print(*);System.out.println();7、歌德巴赫猜想,任何一个大于六的偶数可以拆分成两个质数的和,打印出所有的可能。如输入10,结果为:10=5+5;10=3+7。public class Gede public static void main(String args) int n = Integer.parseInt(args0);if(n=6 |
12、n%2!=0)System.out.println(错误的参数!);return;Gede g = new Gede();/因为1不是素数,n-2是偶数,所以从3开始循环for(int i=3;i=n/2;i+)if(i%2=0)continue;if(g.isPrime(i) & g.isPrime(n-i)System.out.println(i+(n-i)+=+n);/* * 判断num是否是素数 */public boolean isPrime(int num)for(int i=2;i=num/2;i+)if(num%i=0)return false;return true;四、实训
13、题万年历的设计与实现。本程序包含两个类CalenderModelA和TestCalenderModelA。CalenderModelA实现了赛事日期设置等主要功能,程序文件CalenderModelA .java。public class CalenderModelA/计算从公元始的天数public int getNumberOfDay(int year, int month, int day)int total = 0;int limit = getTotalDaysOfMonth(year, month);if(day=limit)for (int y = 1; y year; y+) t
14、otal += (this.isLeapYear(year) ? 366 : 365);for (int m = 1; m month; m+) total += (this.getTotalDaysOfMonth(year, month);total+=day;return total;elseSystem.out.println(您输入的日期非法);return -1;/打印万年历public void show(int year, int month) int total = 0;/计算从公元始到今年之前的总天数for (int y = 1; y year; y+) total += (
15、this.isLeapYear(y) ? 366 : 365);/计算今年到本月前的总天数for (int m = 1; m month; m+) total += (this.getTotalDaysOfMonth(year, m);/计算本月1日是星期几total = total % 7;int d1 = (total + 1) % 7;int d2 = this.getTotalDaysOfMonth(year, month);System.out.println(ttt + year + 年 + month + 月);(-);String s = 日, 一, 二, 三, 四, 五, 六
16、 ;for (int i = 0; i 7; i+) System.out.print(si + t);System.out.println();for(int i=0;id1;i+)System.out.print(t);/打印本月日历for (int i = d1,j=1; i d1 + d2; i+,j+) System.out.print(j + t);if(i+1)%7 = 0)System.out.println();System.out.println();/判断是否为闰年public boolean isLeapYear(int year)return (year%4 = 0)
17、 & (year % 100 != 0) | (year % 400 = 0);/计算某年某月天数public int getTotalDaysOfMonth(int year, int month) int total = 0;switch (month) case 1:case 3:case 5:case 7:case 8:case 10:case 12:total = 31;break;case 2:total = this.isLeapYear(year) ? 29 : 28;break;case 4:case 6:case 9:case 11:total = 30;break;ret
18、urn total;TestCalenderModelA实现main方法,具有输入大赛起始和终止日期,输出日历,并计算大赛周期的功能。程序文件TestCalenderModelA .java。nner;public class TestCalenderModelApublic static void main(String args) Scanner scan = new Scanner(System.in);System.out.print(请输入年份:);int year = scan.nextInt();System.out.print(请输入月份:);int month = scan.
19、nextInt();System.out.println(月历如下);CalenderModelA testBegin = new CalenderModelA();testBegin.show(year, month);第三章 面向对象编程一、选择题1-5 CABDD 2-10 DCCBC11-12 CC二、填空题1. Package mypackage;2. final3. Object4. package import class5. c三、程序设计题2、按下列要求编写程序: 创建Teacher类 要求:Teacher类要描述姓名、年龄、薪水,类型分别为String、int、double
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Java 核心技术 习题 答案
限制150内