4

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

1]

import java.util.*;

class SetA3
{
public static void main(String args[])
{
TreeSet <String> ts=new TreeSet<String>();
ts.add("Red");
ts.add("Green");
ts.add("Blue");
ts.add("White");
System.out.println("TressSet is :"+ts);
}
}

2]

You might also like