



免费预览已结束,剩余1页可下载查看
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Chapter 2 Elementary Programming1.Valid identifiers: applet, Applet, $4, apps, x, y, radiusInvalid identifiers: a+, -a, 4#R, #44, class, public, intKeywords: class, public, int 2. double miles = 100;final double KILOMETERS_PER_ MILE = 1.609;double kilometers = KILOMETERS_PER_ MILE * miles;System.out.println(kilometers);The value of kilometers is 160.9.3.There are three benefits of using constants: (1) you dont have to repeatedly type the same value; (2) the value can be changed in a single location, if necessary; (3) the program is easy to read.final int SIZE = 20;4.a = 46 / 9; = a = 5a = 46 % 9 + 4 * 4 - 2; = a = 1 + 16 2 = 15a = 45 + 43 % 5 * (23 * 3 % 2); = a = 45 + 3 * (1) = 48a %= 3 / a + 3; = a %= 3 + 3; a % = 6 = a = a % 6 = 1;d = 4 + d * d + 4; = 4 + 1.0 + 4 = 9.0d += 1.5 * 3 + (+a); = d += 4.5 + 2; d += 6.5; = d = 7.5d -= 1.5 * 3 + a+; = d -= 4.5 + 1; = d = 1 5.5 = -4.55.22-4-4016. (2 + 100) % 7 = 4. So it is Thursday.7.For byte, from -128 to 127, inclusive.For short, from -32768 to 32767, inclusive.For int, from -2147483648 to 2147483647, inclusive.For long, from -9223372036854775808 to 9223372036854775807.For float, the smallest positive float is 1.40129846432481707e-45 and the largest float is 3.40282346638528860e+38.For double, the smallest positive double is 4.94065645841246544e-324 and the largest double is 1.79769313486231570e+308d.8.25 / 4 is 6. If you want the quotient to be a floating-point number, rewrite it as 25.0 / 4.0, 25.0 / 4, or 25 / 4.0.9.Yes, the statements are correct. The printout is 25 / 4 is 625 / 4.0 is 6.253 * 2 / 4 is 13.0 * 2 / 4 is 1.510. a. 4.0 / (3.0 * (r + 34) 9 * (a + b * c) + (3.0 + d * (2 + a) / (a + b * d)11. 1.0 * m * (r * r) 12. b and c are true.13. All.14. Line 2: Missing static for the main method. Line 2: string should be String. Line 3: i is defined but not initialized before it is used in Line 5. Line 4: k is an int, cannot assign a double value to k. Lines 7-8: The string cannot be broken into two lines.15. long totalMills = System.currentTimeMillis() returns the milliseconds since Jan 1, 1970. long totalSeconds = totalMills / 1000 returns the total seconds. long totalMinutes = totalSeconds / 60 returns the total minutes. totalMinutes % 60 returns the current minute.16.Yes. Different types of numeric values can be used in the same computation through numeric conversions referred to as casting. 17. The fractional part is truncated. Casting does not change the variable being cast. 18. f is 12.5i is 1219. System.out.println(int)1); System.out.println(int)A); System.out.println(int)B); System.out.println(int)a); System.out.println(int)b); System.out.println(char)40); System.out.println(char)59); System.out.println(char)79); System.out.println(char)85); System.out.println(char)90); System.out.println(char)0X40); System.out.println(char)0X5A); System.out.println(char)0X71); System.out.println(char)0X72); System.out.println(char)0X7A);20.u345dE is wrong. It must have exactly four hex numbers.21. and ”22.i becomes 49, since the ASCII code of 1 is 49;j become 99 since (int)1 is 49 and (int)2 is 50;k becomes 97 since the ASCII code of a is 97;c becomes character z since (int) z is 90;23.char c = A;i = (int)c; / i becomes 65float f = 1000.34f;int i = (int)f; / i becomes 1000double d = 1000.34;int i = (int)d; / i becomes 1000int i = 97;char c = (char)i; / c becomes a24. bc-225. System.out.println(1 + 1); = 11System.out.println(1 + 1); = 50 (since the Unicode for 1 is 49System.out.println(1 + 1 + 1); = 111System.out.println(1 + (1 + 1); = 12System.out.println(1 + 1 + 1); = 51 26.1 + Welcome + 1 + 1 is 1Welcome 11.1 + Welcome + (1 + 1) is 1Welcome 2.1 + Welcome + (u0001 + 1) is 1Welcome 21 + Welcome + a + 1 is 1Welcome a127.Class names: Capitalize the first letter in each name.Variables and method names: Lowercase the first word, capitalize the first letter in all subsequent words.Constants: Capitalize all letters.28.public class Test /* Main method */ public static void main(String args) / Print a line System.out.println(2 % 3 = + 2 % 3); 29.Compilation errors are detected by compilers. Runtime errors occur during execution of the program. Logic errors results in incorrect results.30. The Math class is in the java.lang package. Any class
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 贵州社区工作者考试真题及答案
- 考点攻克人教版八年级《简单机械》定向攻克试卷(含答案详解版)
- 中医基础应试考试题库及答案
- 解析卷-人教版八年级上册物理声现象《噪声的危害和控制》综合测评试卷(解析版含答案)
- 后勤财务岗位考试题及答案
- 难点解析-人教版八年级上册物理声现象《噪声的危害和控制》专项攻克试卷(含答案解析)
- 护士中医外科考试题库及答案
- 考点攻克人教版九年级《电功率》章节测试试卷(含答案详解)
- 一级二级考试题目及答案
- 山东中考信息技术考试题库及答案
- 小儿鼾症课件
- 国开2025年《人文英语4》综合测试答案
- 2025年共青团团校考试入团考试题库(附答案)
- 2025海参滋补趋势洞察报告
- DB32∕T 3812-2020 建筑同层排水工程技术规程
- 银行柜台人员手语课件
- 省委消防安全知识培训课件
- 乐刻培训课件
- 2024年少先队大队委竞选笔试题(含答案)
- 现代教育技术课程总结
- 2025中国银河证券股份有限公司校园招聘笔试参考题库附带答案详解(10套)
评论
0/150
提交评论