You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extract a path of stringimport java.util.TreeSet;
public class StudentManagement {
public static void main(String[] args) {
TreeSet<String> students = new TreeSet<>();
// Adding names one by one
students.add("Theagu");
students.add("Krishna Priya");
students.add("Priya Rashi");
students.add("Leon");
// Displaying names line by line
for (String name : students) {
System.out.println(name);
}
}
} #115