0
My teacher wanted something like this, but I do not fully understand it. Can you help me, I'm just starting java.
Student class is defined as follows. Class Student {int Number String Name} Using the “Student” class write a Java program that reads student’s data on the screen into one dimension array. List the data that you red in array. Test your program for 10 students and show the result list.
2 Réponses
0
for 10 students
create an object of Student s
to s.name add number (from a user)
to s.name add name
add s to an array
print data from array