版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、java 开发技术实验报告实验序号:实验 05实验项目名称:使用类和对象学号姓名专业、班实验地点实 1-316 指导教师实验时间2012-10-10 一、实验目的及要求学习并掌握类的创建和使用方法;学习并掌握string 类的常用方法;学习并掌握random 类的常用方法;学习并掌握math 类的常用方法。二、实验设备(环境)及要求pc 机,windows xp,软件环境( jdk1.6,tomcat web服务器, eclipse sdk, )硬件要求: cpu pii 以上, 64m 内存, 100m 硬盘空间。软件要求: windows98/me/xp/nt/2000, ie 5 以上。
2、开发环境: jdk1.6.0_10, notepad 或者 editplus。三、实验内容与步骤使用类和对象(一)练习一填写以下空格(参考教材第3.2 节的例 3.1) :(a)声明一个变量town,将其指向一个字符串类型,并初始化为 “ anytown, usa ” ;(b) 写一个赋值语句, 调用字符串类的length 方法,返回 ” colledge” 字符串对象的长度,并将其赋值给变量stringlength ;(c)完成赋值语句,使change1 变量包含与colledge 相同的字符,但是全部大写;(d)完成赋值语句,使change2包含与 change1 相同的字符,但是所有字符
3、“o”全部要用“ *”替换。(e)完成赋值语句, 将 colledge 和 town 两个字符串连接起来,并把值赋给change3 (使用 string 类的 concat 方法) 。代码如下(红色字体表示填空部分):public class stringplay public static void main (string args) string college = new string (podunk college);string town = new string(anytown, usa); /part(a) int stringlength ; string change1,c
4、hange2,change3; stringlength = college.length(); /part(b) system.out.println(college + contains + stringlength + characters.); change1 = college.touppercase(); /part(c) change2 = change1.replace(o,*); /part(d) change3 = college.concat(town); /part(e) system.out.println(the final string is + change3)
5、; 练习二以下程序读入直角三角形的两条直边的值,然后计算斜边的边长(斜边的计算方法:直边平方之和的平方根)。将程序里面的空格填写完整,注意要使用math 类的方法。代码如下(红色字体表示填空部分):import java.util.scanner; public class righttriangle public static void main(string args) double side1, side2; /lengths of the sides of a right triangle double hypotenuse; /length of the hypotenuse sca
6、nner scan = new scanner(system.in); /get the lengths of the sides as input system.out.print(please enter the lengths of the two sides of + a right triangle(separate by a blank space):); side1 = scan.nextdouble(); side2 = scan.nextdouble(); /compute the length of the hypotenuse hypotenuse =math.sqrt(
7、side1*side1+side2*side2); /print the result system.out.print(length of the hyoitenuse + hypotenuse); 练习三完成以下程序。该程序用于生成随机数字。注意需要把java.util.random 类导入程序。代码如下(红色字体表示填空部分):import java.util.random; public class luckynumbers public static void main(string args) random generator = new random(); int lucky1,
8、 lucky2, lucky3; /generate lucky1(a random integer between 50 and 79) using the nextint method (with no parameter) lucky1 = math.abs(generator.nextint()%30+50); /generante lucky2 (a random integer between 90 and 100) using the nextint method with an integer parameter lucky2 = generator.nextint(11)+9
9、0;/generate lucky3 (a random integer between 11 and 30 )using nextfloat lucky3 = (int)(generator.nextfloat()*20)+11);system.out.println(y our lucky numbers are + lucky1 + , + lucky2 +, and + lucky3); 练习四把程序保存在文件stringmanips.java 中。将文件放置在本地路径下,编译并运行。 仔细查看程序的输出结果,然后按照以下要求修改程序:1. 声明一个名为middle3 的字符串类型变量
10、,将声明变量放在程序的顶端,使用一个赋值语句和substring 方法,将phrase 字符串中间三个字符赋值给middle3 变量(该字符串中间的字符,及其左右各一个字符)。添加一个打印语句,用于输出结果。保存,编译并运行该程序。2. 添加一个赋值语句,替代swithchedphrase 字符串中的所有空格为“*” 。该结果应该返回给 switchphrase。3. 声明两个新的字符串类型变量city 和 state。添加语句,提示用户输入他们的籍贯所在的 city 和 state,并使用 scanner 类读入该信息。然后使用string 类创建并打印一个新字符串,包含state 名(全部
11、大写) ,city 名(全部小写),state 名(全部大写) 。如下例所示:north carolinalilesvillenorth carolina 全部代码如下: (红色字体表示程序修改代码)import java.util.scanner; public class stringmanips public static void main(string args) string middle3 ; / 声明一个名为middle3 的字符串类型变量string city, state; /声明两个新的字符串类型变量city 和 state /提示用户输入他们的籍贯所在的city 和 s
12、tate,并使用scanner 类读入该信息scanner scan = new scanner (system.in); system.out.println( 请输入您的籍贯所在的城市:); city=scan.next(); system.out.println( 请输入您的籍贯所在的国家:); state =scan.next(); /使用 string 类创建并打印一个新字符串,包含state 名(全部大写) ,city 名(全部小写) ,state 名(全部大写)string brithplace1,brithplace2; state = state.touppercase();
13、 city = city.tolowercase(); brithplace1 = state.concat(city); brithplace2 = brithplace1.concat(state); string phrase = new string (this is a string test.); int phraselength; /number of characters in the phrase string int middleindex; /index of the middle character in the string string firsthalf; /fi
14、rst half of the phrase string string secondhalf; /second half of the phrase string string swithedphrase;/a new phrase with original halves switched /compute the length and middle index of the phrase phraselength = phrase.length(); middleindex = phraselength/2; /get the substring for each half of the
15、 phrase firsthalf = phrase.substring(0,middleindex); secondhalf = phrase.substring(middleindex,phraselength); /concatenate the firsthalf at the end of the secondhalf swithedphrase = secondhalf.concat(firsthalf); swithedphrase = swithedphrase.replace( , *); / 添 加 赋 值 语 句 , 替 代swithchedphrase 字符串中的所有空
16、格为“* ” 。该结果应该返回给switchphrase。middle3 =phrase.substring(10,12) ; /使用一个赋值语句和substring 方法, 将phrase 字符串中间三个字符赋值给middle3 变量(该字符串中间的字符,及其左右各一个字符) 。/print information about the phrase system.out.println(); system.out.println(original phrase: + phrase); system.out.println(length of the phrase: + phraselengt
17、h + characters); system.out.println(index of the middle; + middleindex);system.out.println(character at the middle index: + phrase.charat(middleindex); system.out.println(switched phrase: + swithedphrase); system.out.println(middle3: + middle3); system.out.println(brithplace: +brithplace2); system.o
18、ut.println(); 使用类和对象(二)练习一:计算距离文件 distance.java 包含一个不完整的程序,用于计算两点之间的距离。两点(x1, y1)和( x2, y2)之间的距离是(x1-x2)2+(y1-y2 )2的平方根。本程序将两个坐标点作为输入。请添加程序语句,计算距离并打印结果。代码如下:import java.util.scanner; public class distance public static void main(string args) double x1,y1,x2,y2; double distance; scanner scan = new sc
19、anner(system.in); system.out.print(enter the coordinates of the first point + (put a space between then): ); x1 = scan.nextdouble(); y1 = scan.nextdouble(); system.out.print(enter the coordinates of the second point + (put a space between then): ); x2 = scan.nextdouble(); y2 = scan.nextdouble(); distance = math.pow(x1-x2, 2)+math.pow(y1-y2,2); system.out.print(the distance is
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 幼儿园篮球培训
- 思科交换机培训
- (基础卷)第一单元 圆和扇形(单元测试)数学六年级上册单元速记巧练系列(冀教版)教师版
- 河北省唐山市滦州市2024-2025学年七年级上学期11月份期中考试生物试题(无答案)
- T-YNZYC 0085-2023 绿色药材 云黄连产地加工规程
- T-TSSP 029-2023 鲜笋浆(粉)加工技术规程
- 河北省邯郸市部分校2024-2025学年高三上学期第二次联考生物试题 含解析
- 河北省邢台市邢襄联盟2024-2025学年高三上学期10月份期中联考数学试题 含解析
- Windows Server网络管理项目教程(Windows Server 2022)(微课版)课件项目2 活动目录的配置与管理
- 浙江大学《现代汉语语法修辞》在线作业及答案
- 食品企业财务管理课件
- 中药审方-中药饮片处方审查(中药调剂技术课件)
- 人工智能+大数据应用课件
- 中医养生中医养生与体质调护课件
- 煤矿区队安全管理工作中存在的问题及对策探讨
- 建筑工程工地卫生防疫措施
- 海口市秀英区2022-2023学年六年级下学期小升初真题精选数学试卷含答案
- 供应商社会责任CRS审核检查评分表
- 三年级家长会语文教师发言课件
- ASME B16.5标准法兰尺寸表
- 亚马逊跨境电商运营与广告实战
评论
0/150
提交评论