《计算机程序设计Java第2版王新萍习题答案.docx》由会员分享,可在线阅读,更多相关《计算机程序设计Java第2版王新萍习题答案.docx(33页珍藏版)》请在第一文库网上搜索。
1、计算机程序设计(Java)(第2版)王新萍习题答案单元一习题答案1 . JaVa语言有哪些特点?答:面向对象、简单、平台无关性、安全性、内存管理、分布式应用、多线程、动态、解释运行,高 效能2 .什么叫做类?什么叫做对象?答:砺像编S,具体侬阕楙炳象襁就殿蝌昉法。襁葡辨4琨1种 象数据类型来描述的,这种抽象数据类型称为类。类是对具有相同属性和方法的一组相似对 象的抽象,或者说类是对象的模板。3 .简述JaVa的运行机制。答:JaVa程序的运行必须经过编写、编译、运行三个步骤。编写是指在JaVa开发环境中进行程序代码的输入过程,最终形成后缀名为.java的JaVa源文件。编译 是指使用Java编
2、译器对源文件进行错误排查的过程,编译后将生成后缀名为.class的字节 码文件。运行是指使用JaVa解释器将字节码文件翻译成机器代码,在CPU上运行并显示结 果的过程。4 .简述JaVa应用程序的开发流程。答:JaVa应用程序的运行经过编写、编译、运行三个步骤。第1步,编写程/支使用记事本或其f蝇:件编写程序的源代码,将源代码保存为文件filename, java 文件。第2步,编译程序。在MS-DOS命令窗口,将当前目录转换到JaVa源程序所在的保存目录; 输入javac filename, javaw形式的命令进行程序编译。第3步,执行程序。在同样的命令窗口中输入“javaa/e弼”形式的
3、命令执行程序。完成了程序的开发,查看相应t目录,其中应该具有两个文件,分别是XXXX. java和 XXXX. classo5 . C6 .b7 . a8 . Java 程序的种类有:Applet Application Servlets9 .软件模型10 .正确单元二习题答案一、选择题1-5、CCCBB 6-10 BABCB 11-15 CAADD 16-21 ADDADA二、填空题1、 $ 2、 true 3、 15 4 float 5、 i=10三、编程题1、答class isPrimepublic static void main(String args) for (double i
4、= 1; i 101; i+) boolean flag = false;for (int j = 2; j i; j+) if(i%j = 0) flag - true;)if(!flag)(System. out. print (int) i+t);)2、答:public class example public static void main(String args) double sum=100, num=100;for(int i=2;i 1000000) (/高于100万元时,超过100万元的部分按1%提成,reward = (profit - 1000000) * 0. 01;
5、profit = profit - 1000000;System, out. printin (reward);)if(profit 600000) 60万到100万之间时,高于60万元的部分,可提成1.5席, reward = reward + (profit - 600000) * 0. 015;profit = profit - 600000;System, out. print In (reward);)if(profit 400000) 40万到60万之间时高于40万元的部分,可提成3%reward = reward +(profit - 400000) * 0.03;profit
6、= profit - 400000;System, out. print In (reward);)if (prof it 200000) 20万到40万之间* 高于20万元的部分,可提成5乐 reward = reward + (profit - 200000) * 0. 05;profit = profit - 200000;System, out. print In (reward);)if (profit 100000) /利润高于10万元,低于20万元时,高于10万元的部分,* 可提成7. 5%;reward = reward +(profit - 100000) * 0. 075;
7、profit = profit - 100000;System, out. print In (reward);)if (profit 0) /低于10万元的部分按10%提成,reward = reward + profit * 0. 1;System, out. print In (reward);/if (profit 0) )System, out. Println(“您的利润是:“+SUmReWard+“元);SyStenL。上 Println(您的奖金是:“+reward + 元);/System, out. print In(reward);/System, out. printi
8、n(sumReward);)4、答:class Programpublic static void main(String args) int sum = SumPeach(V);System. out. println(第一天摘得桃子有:+SUnI);)递归static int SumPeach(int day) (if (day = 10)return 1;return 2 * SumPeach(day + 1) + 2; )5、答:public class PersonAge static int getAge(int n)if (n=l) return 10;return 2 + ge
9、t4ge(n-1);public static void main(String args) System. OUf. printin (第五个的年龄为:“+geMge(5);单元三习题答案 一、选择题1、 B 2、 C 3、 C 4、 BC 5、 B 6、 B 7、 C二、编程题1、答:public class Boxprivate double length;private double width;private double height;public static void main(String args) Box box-new Box(5, 10, 2);System. out
10、. println(box. volume O);public Box(double length, double width, double height) super O;this, length = length;this, width = width;this, height = height;)public double volume 0return length*width*height;)2、答:public class Student )float score;static float total,static int count,public static void main
11、(String args) Student si-new StudentO ;Student s2-new StudentO ;si. scoretotalcount(80);s2.scoretotalcount(90);System. OU. Println(总人数是+Student.总分数是+Student. SUnIO +“平均分是“+Student, average。);)void scoretotalcount(float s)this, score=s;totaI- tofa7+score; counts )static float sum () return total,)sta
12、tic float average O return total/count )3、答:public class Students private String name;private String no;private char sex;private int age;public String getName() return name;)public void setName(String name)( this. name = name;)public String getNo() return no;)public void setNo(String no) this. no =
13、no;)public char getSex() return sex;public void setSex(char sex) this. sex = sex;)public int getAge() return age;public void setAge(int age) this. age = age;)4、答:public class Students private String name;private String no;private char sex;private int age;public StudentsCString name, String no, char sex, int age)super O;this, name = name;this, no = no;this, sex = sex;this, age = age;)public Students(Stri ng no) super O;this, no = no;)public Students(String name, String no) super O;this, name = name;t