綜合練習 動物樂園

2021-08-19 19:46:55 字數 1469 閱讀 4963

package page2_197;

/*** 抽象的動物父類

* @author win8**/

public abstract class animal

public string getname()

/*** 叫方法

*/public abstract void shout();

package page2_197;

/*** 貓類

* @author win8**/

public class cat extends animal implements terrestrial

public int getlegnum()

public void shout()

package page2_197;

/*** 鴨子類

* @author win8**/

public class duck extends animal implements terrestrial

public int getlegnum()

public void shout()

}package page2_197;

/*** 海豚類

* @author win8**/

public class dolphin extends animal

public void shout()

}package page2_197;

/*** 陸地生物

* @author win8

* 獲得腿數

*/public inte***ce terrestrial else

}system.out.println("是否要繼續修改資料:按0進行修改操作,其它任意數字鍵退出");

}public static void modifyanimal() throws exception

system.out.println("請輸入鴨子的名稱");

names[1] = input.next();

system.out.println("請輸入鴨子腿的條數");

number[1] = input.nextint();

if (number[1] != 2)

system.out.println("請輸入海豚的名稱");

names[2] = input.next();

animals[0] = new cat(names[0], number[0]);   //跟新資訊

animals[1] = new duck(names[1], number[1]);

animals[2] = new dolphin(names[2]);

}public static void main(string args) catch (exception e) finally

}system.out.println("謝謝使用!");}}

if綜合練習

1.1 從控制台輸入你要出的拳 石頭 1 剪刀 2 布 3 2 電腦隨即出拳 3 比較勝負 import random 1.從控制台輸入要出的拳 player int input 請輸入您要出的拳 石頭1 剪刀2 布3 2.電腦出拳 computer random.randint 1,3 print...

綜合練習四

一 單選題 每題 2 分,共20分 1.以下資料結構中哪乙個是線性結構?b a.有向圖 b.棧 c.二叉樹 d.b樹 2.若某鍊錶最常用的操作是在最後乙個結點之後插入乙個結點和刪除最後乙個結點,則採用 c 儲存方式最節省時間。a.單鏈表 b.雙鏈表 c.帶頭結點的雙迴圈鍊錶 d.單迴圈鍊錶 3.以下...

18 綜合練習

目錄 驗證碼必須放到session中 快速封裝引數為物件 使用者登入成功之後,需要使用重定向來進行跳轉,不能使用 跳轉 沒有在request中儲存資料,跳轉時就應該使用重定向 資料庫中,如果主鍵是自增長的,在插入資料時,主鍵的位置填入null即可。阻止表單提交注意事項 分頁 分頁好處 輸入 輸出分頁...