編寫Java應用程序。首先,定義描述學生的類——Student,包括學號(int)、 姓名(String)、年齡(int)等屬性;二個方法:Student(int stuNo,String name,int age) 用於對對象的初始化,outPut()用於輸出學生信息。其次,再定義一個主類
package liu0917; public class Student { int stuNO; String name; int age; void outPut() { System.out.println("學號是:"+stuNO ...
