public class Student{
private String name;
private int ID;
private int age;
private int weight;
private int height;
public Student(String name, int ID,int age,int weight,int height){
this.name = name;
this.ID = ID;
this.age = age;
this.weight = weight;
this.height = height;
}
public String get_name(){
return this.name;
}
public int get_ID(){
return this.ID;
}
public int get_age(){
return this.age;
}
public int get_weight(){
return this.weight;
}
public int get_height(){
return this.height;
}
public static void main(String[] args){
Student a = new Student("Gun" , 32075, 26, 80, 174);
Student b = new Student("Rit" , 32078, 25, 70, 170);
Student c = new Student("Frame" , 32080, 19, 58, 173);
Student d = new Student("Coffee" , 32057, 18, 50, 168);
Student e = new Student("Boat" , 32087, 16, 60, 165);
Student [] data = {a,b,c,d,e};
find(data);
}
public static void find(Student [] data){
int i = 0;
int min = data[i].get_weight();
int index = 0;
while(i < data.length){
if(min > data[i].get_weight()){
min = data[i].get_weight();
index = i;
}
i = i + 1;
}
System.out.println("Min is " + data[index].get_name() + " weight = " + min);
}
}
สมัครสมาชิก:
ส่งความคิดเห็น (Atom)
Link Video Presentation Resort Managemant System Project.
Video Presentation Resort Managemant System Project. จัดทำโดย พากษ์เสียง: คุณาสิน ทองมณี 5801012620011 ลำดับภาพ: สุพิชชา ศรีศิริ...
-
- 1NF หรือ Fisrt Normal Form มีเงื่อนไขอยู่ว่า ต้องไม่มีคอลลัมน์ใดในตารางที่มีค่ามากกว่า 1 ค่า หรือที่เรียกว่า Atomic ซึ่งหมายถึง ข้อมูลที่...
-
https://docs.google.com/spreadsheets/d/10Y6o-h8dAAKf7MHTtGvQDBJuzGkAx_X0WYVgj2nB8v0/edit?usp=sharing จากภาพจะเห็นว่า - เก...
ไม่มีความคิดเห็น:
แสดงความคิดเห็น