Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by koundinya

  1. koundinya

    Sorting the Objects

    public class SortObjects { public static void main(String s[]) { Collections col; List l=sort(s); System.out.println("\nStrings sorted List ..."); for(int i=0;i<s.length;i++) { System.out.println((String)l.get(i)); } int...
  2. koundinya

    Algorithm help

    Tom7, Your idea is really to be appreciated Cheers
  3. koundinya

    Switch Statement - Why the Error

    Do not include VB ideas with java. For such programs, instead of using case statements use if-else statements.

Part and Inventory Search

Back
Top