Description: Writing student class Student contains attributes: student number (String type), name (String type), gender (String), age (int) method: say () return type is void, the function is toscreen print his words "I am a Student!".
On the theme based on a class TestStudent students object to add to increase Student object in the main method, write a program to perform the following functions:
1) increasing the number of students, "Name: Joe Smith, student number: 0001, Gender: Male, Age: 22."
2) Output seating the student number, name, sex, age.
Write a curriculum classes Course contains attributes: Course ID (int type), course name (String type). Contains: curriculum, access to courses.
4 in the Student class to add a property: Course (Course)
Add a student in class TestStudent below
Course Code: 1 Course Name: java name: Joe Smith Student ID: 0001 Gender: Male Age: 22. "
Add a constructor to initialize all of the properties in the Student class. Hint: spoken Person cla
To Search:
File list (Check if you may need any files):
shiyan4
.......\Course.class
.......\Course.java
.......\Student.class
.......\Student.java
.......\TestStudent.class
.......\TestStudent.java