1 Entesar Khaled نشر 15 مايو 2019 أرسل تقرير نشر 15 مايو 2019 يمكن ذلك كالتالي.. وإن كنت تقصد شيئ أخر الرجاء توضحه import java.util.*; class Teacher{ private int number; private String name; private int age; public Teacher(int number, String name, int age){ this.number = number; this.name = name; this.age = age; } public String toString() { return this.getName()+"\n"; } public String getName() { return this.name; } // .... Getters and Setters. public static void main(String[] args) { List<Teacher> teachers = new ArrayList<Teacher>(); Scanner input = new Scanner(System.in); System.out.println ("Enter the name of the teacher"); String teacherName= input.next(); System.out.println ("Enter the number of the teacher"); int teacherNumber= input.nextInt(); System.out.println ("Enter the age of the teacher"); int teacherAge= input.nextInt(); Teacher t = new Teacher(teacherNumber, teacherName, teacherAge); teachers.add(t); for (Teacher teacher : teachers) { System.out.println(teacher.toString()); } } } 1 اقتباس
0 Tamer Abo Ali نشر 15 مايو 2019 الكاتب أرسل تقرير نشر 15 مايو 2019 (معدل) اقتباس مدرس teacher Id •Name •dateOfBirth •تخصص specialization Crs_name اقتباس اعطيني الدوال الخاصة في المدرس تم التعديل في 15 مايو 2019 بواسطة Tamer Abo Ali اقتباس
السؤال
Tamer Abo Ali
بدي كود اضافة مدرس جديد
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.