0
How to print the highest mark of a student among 30 students in a particular subject using Java?
2 Réponses
+ 1
Store the marks of 30 students in an array and find the greatest element of array.
0
Collections has predefined sort method. So you can use it, just store in collection, and sort it..