導航:首頁 > 編程語言 > javaforstudents

javaforstudents

發布時間:2023-07-05 05:51:08

① 用java代碼設計一個學生類

public class Student{
private String name;
private String studentNo;
private float score;
//get方法
//set方法

public static void main(String[] args){
//你可以用學生數組或者List<Student>來存數據
//我示範一下用數組存數據的 當然你用list來存的話 後面的比較 更加簡單 只需要

//實現一個比較器即可
Student[] students = new Student[2]

Student a =new Student();
a.setName("a");
a.setStudentNo("001");
a.setScore(98);
students[0]=a;
Student b = new Student();
b.setName("b");
b.setStudentNo("002");
b.setScore(87);
sudents[1] = b;
。。。。。。

//然後用冒泡排序根據學生的成績判斷 演算法你自己決定 冒泡還是挺好用的
for(int i =0,len =students.length ;i<len;i++){
for(int j=i+1,len;=students.length;j<len;j++){

if(students[i].getScore()>students[j].getScore()){
Student temp =students[i];
students[i] = students[j];

students[j]=temp;
}

}
}
///最後輸出結果
for(){
System.out.println();
}
}

② Java中計算學生的平均身高

public class Compute {

class Student {// 學生類
private double height;

Student(double height) {
this.height = height;
}

public double getHeight() {
return height;
}

public void setHeight(double height) {
this.height = height;
}

}

class Height {// 方法類

public double compute(Student[] students) {
int count = students.length;
double sum = 0;
for (Student student : students) {
sum += student.getHeight();
}
double result = sum / count;
return result;
}
}

class TestHeihgt {// 測試類

public void test() {
Student[] students = { new Student(170), new Student(160), new Student(165) };
Height height = new Height();
double avgHeight = height.compute(students);
System.out.println("學生平均身高是:" + avgHeight);
}
}

public static void main(String[] args) {
TestHeihgt testHeihgt = new Compute().new TestHeihgt();
testHeihgt.test();
}
}

純手打,測試可用!

閱讀全文

與javaforstudents相關的資料

熱點內容
編程模型怎麼看圖 瀏覽:177
相機7500打A檔數據調多少 瀏覽:182
單引號雙引號js 瀏覽:924
該文件包含違規內容是什麼意思 瀏覽:926
maya臉部捕捉教程 瀏覽:762
聯通app如何看寬頻網速 瀏覽:605
maccs6打不開raw文件格式 瀏覽:730
UG90升級包360雲盤 瀏覽:831
dnf念帝90版本寵物推薦 瀏覽:777
引用css文件到html網頁里方法 瀏覽:217
天之眼導航地圖怎麼升級 瀏覽:934
word文件修改後怎麼重新生成目錄 瀏覽:973
win2008iis上傳文件大小 瀏覽:948
js怎麼取3cs的值 瀏覽:823
發文件到郵箱怎麼發送失敗是怎麼回事 瀏覽:365
我和微信的故事盜號 瀏覽:836
網路審計設備品牌 瀏覽:335
app助手在哪裡下載 瀏覽:822
qc導出excel錯誤無法導出至文件 瀏覽:95
微信下載的文件出現感嘆號 瀏覽:706

友情鏈接