版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、Java 實(shí)驗(yàn)報(bào)告實(shí)驗(yàn)日期:2011年10月17日 實(shí)驗(yàn)機(jī)房與機(jī)號(hào): 實(shí)驗(yàn)班級(jí): 組員姓名學(xué)號(hào): 指導(dǎo)教師:劉壽強(qiáng) 第三單元實(shí)驗(yàn)?zāi)康模赫莆贞愂雒嫦驅(qū)ο蟮乃枷耄ㄟ^(guò)創(chuàng)建類的實(shí)力來(lái)體現(xiàn)實(shí)驗(yàn)內(nèi)容:第三單元;實(shí)驗(yàn)步驟:3-2class DogString color;int weight;public Dog(String color,int weight)this.color=color;this.weight=weight;public void showd()System.out.println("這是體重為"+weight+"斤,"+"顏色為&
2、quot;+color+"的狗");class CatString color;int weight;public Cat(String color,int weight)this.color=color;this.weight=weight;public void showc()System.out.println("這是體重為"+weight+"斤,"+"顏色為"+color+"的貓");public class Apublic static void main(String args)Do
3、g d1= new Dog("黃色",100);Cat c1= new Cat("白色",200);d1.showd();c1.showc(); 3-3class CarString ping;double price;String date;public Car(String ping,double price,String date)this.ping=ping;this.price=price;this.date=date;public void show()System.out.println(ping+"轎車,價(jià)格為"+pr
4、ice+date);public void qd()System.out.println("汽車正在啟動(dòng)");public void sc()System.out.println("汽車正在剎車");public void js()System.out.println("汽車正在加速");public class Apublic static void main(String args)Car car=new Car("奇瑞",3000,"保修終生!");car.show();car.js();
5、3-4public class ConsoleParamspublic static void main(String args)if (args.length<2)return;int a=Integer.parseInt(args0);int b=Integer.parseInt(args1);int c;c=a+b;System.out.println(a+" +"+b+" ="+c);3-5import java.io.*;public class ExampleDpublic static void main(String args)in
6、t num=20;if(num>20)System.out.println("數(shù)值較大");elseSystem.out.println("數(shù)值較小或等于");3-6class SExamstatic int num=0;public SExam() num+;public class StaticExampublic static void main(String args)SExam se1=new SExam();SExam se2=new SExam();SExam se3=new SExam();System.out.println(SE
7、xam.num+"次");第四單元目的:掌握格式化轉(zhuǎn)換異常,實(shí)驗(yàn)內(nèi)容:第四單元步驟如下:public class NumberFormatExceptionText /* * param args */public static void main(String args) / TODO Auto-generated method stubint iArray=0,0; try iArray0=Integer.parseInt(args0); iArray1=Integer.parseInt(args1);catch(ArrayIndexOutOfBoundsExcepti
8、on e) System.out.println("用戶輸入的數(shù)據(jù)不完整,程序使用默認(rèn)值代替:"); catch(NumberFormatException e) System.out.println("用戶輸入的不全是數(shù)值型的數(shù)據(jù),程序使用默認(rèn)值替代:"); System.out.println(iArray0+"+"+iArray1+"="+(iArray0+iArray1);public class ArithmeticExceptionText /* * param args */public static
9、 void main(String args) / TODO Auto-generated method stubtryint a=args.length;int b=42/a;catch(ArithmeticException e)System.out.println("除數(shù)不能夠?yàn)榱惆。?quot;);import java.util.Random;public class NegativeIndexExceptionDemo public int getNumberOfRandomIndex(int iArray)throws NegativeIndexExceptionRan
10、dom random=new Random();int index=random.nextInt();if(index<0) throw new NegativeIndexException(this.getClass().getName()+".getNumberOfRandomIndex(int)方法不能夠處理自己所拋出的異常:索引值"+index+"產(chǎn)出異常"); index=index%iArray.length;return iArrayindex;public static void main(String args) int iArr
11、ay=0,1,3,4,5,6,7,8,9;int randomNumber=0;tryrandomNumber=new NegativeIndexExceptionDemo().getNumberOfRandomIndex(iArray);catch(NegativeIndexException e)System.out.println(e+"nmian方法有能力處理該異常t");randomNumber=Math.round(float)(Math.random()*10);System.out.println("產(chǎn)生隨機(jī)結(jié)果為"+randomNumb
12、er);public class NegativeIndexException extends Exceptionpublic NegativeIndexException()super();public NegativeIndexException(String message)super(message);第五單元一、實(shí)驗(yàn)?zāi)康模菏煜ふ莆蛰斎胼敵隽鞫?、?shí)驗(yàn)內(nèi)容:第五單元三、實(shí)驗(yàn)步驟 練習(xí)5-1 校驗(yàn)用戶密碼格式(1) 程序代碼import java.util.Scanner;public class CheckPWpublic static void main(String args)Sys
13、tem.out.println("請(qǐng)輸入密碼:");Scanner scanner=new Scanner(System.in);String inputString=scanner.nextLine();String regular="a-zA-Z$_a-zA-Z$_0-97,19"if(inputString.matches(regular)System.out.println("密碼符合組合規(guī)律。");elseSystem.out.println("密碼不符合組合規(guī)律。");(2) 運(yùn)行結(jié)果圖5-1練習(xí)5-2
14、 轉(zhuǎn)換中文格式日期(1) 程序代碼import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;import java.util.Locale;public class ChineseDatepublic static void main(String args)Date date=new Date(10,9,2011);String dateFormatStr="北京時(shí)間:ntH:mm:ssntEntyyyy-M-dd"SimpleDateFormat sim
15、pleFormat=new SimpleDateFormat(dateFormatStr);System.out.println(simpleFormat.format(date);(2) 運(yùn)行結(jié)果圖5-2練習(xí)5-3 萬(wàn)年歷(3) 程序代碼import java.text.SimpleDateFormat;import java.util.*;public class CalendarAutopublic static void main(String args)System.out.println("請(qǐng)輸入年月(格式:年 月):");Scanner scanner=new
16、 Scanner(System.in);int params=new int2;for(int i=0;i<2&&scanner.hasNextInt();i+)paramsi=scanner.nextInt();if(params1>12)params1=params1%13;if(params1<0)params1=12+params1%13;Calendar calendar=Calendar.getInstance();calendar.set(params0,params1-1,1);int firstIndex=calendar.get(Calen
17、dar.DAY_OF_WEEK)-1;char title='日','一','二','三','四','五','六'int daysArray=new int67;int day=1;for(int i=firstIndex;i<7;i+)daysArray0i=day+;for(int i=1;i<6;i+)for(int j=0;j<7;j+)if(day>daysOfMonth(params0,params1)i=6;break;daysArrayij=day+;for(int i=0;i<7;i+)System.out.print(titlei+"t");System.out.println();for(int i=0;i<6;i+)for(int j=0;j<7;j+)if(daysArrayij!='0')System.out.print(daysArrayij+"t");else System.out.print(" t");System.out.println();private static int daysOfMonth(int
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 城市廣場(chǎng)漏水修復(fù)維護(hù)合同
- 企業(yè)采購(gòu)戰(zhàn)略項(xiàng)目保密承諾書
- 專題04 圓(7大基礎(chǔ)題+4大提升題)(解析版)-2024-2025學(xué)年九年級(jí)數(shù)學(xué)上學(xué)期期中真題分類匯編
- 水利樞紐建設(shè)施工總承包協(xié)議
- 農(nóng)產(chǎn)品促銷策略三篇
- 智慧景區(qū)智能導(dǎo)覽招投標(biāo)文件
- 水利樞紐清淤施工合同
- 企業(yè)分部人力資源策略
- 能源行業(yè)內(nèi)部市場(chǎng)管理辦法
- 餐飲業(yè)合同蓋章操作規(guī)程
- 臺(tái)灣民主自治同盟
- 初中英語(yǔ)-現(xiàn)在進(jìn)行時(shí) 過(guò)去進(jìn)行時(shí)(含練習(xí))
- 小學(xué)綜合實(shí)踐活動(dòng)《業(yè)體驗(yàn)及其他活動(dòng)5.創(chuàng)建我們自己的“銀行”(如閱讀、道德、環(huán)保)》優(yōu)質(zhì)課教案-10
- 奮戰(zhàn)冬三月勵(lì)志主題班會(huì)課件
- 人 大 代 表 履 職 檔 案
- C25噴射混凝土配合比設(shè)計(jì)與使用
- 企業(yè)經(jīng)營(yíng)模擬實(shí)訓(xùn)知到章節(jié)答案智慧樹(shù)2023年華南農(nóng)業(yè)大學(xué)
- 如何做好幼兒園家長(zhǎng)工作課件
- 膽總管囊腫護(hù)理查房
- 高中化學(xué)學(xué)業(yè)水平考試合格考知識(shí)點(diǎn)總結(jié)
- 《Matlab語(yǔ)言與及其應(yīng)用》實(shí)驗(yàn)報(bào)告
評(píng)論
0/150
提交評(píng)論