Rahul Sinha Rahul Sinha

import java.util.Scanner;

class CompareStrings

{

   public static void main(String args[])

   {

      String s1, s2;

      Scanner in = new Scanner(System.in);

     

      System.out.println("Enter the first string");

      s1 = in.nextLine();

     

      System.out.println("Enter the second string");

      s2 = in.nextLine();

     

      if (s1.compareTo(s2) > 0)

         System.out.println("The first string is greater than the second.");

      else if (s1.compareTo(s2) < 0)

         System.out.println("The first string is smaller than the second.");

      else  

         System.out.println("Both the strings are equal.");

   }

}

Rahul Sinha

Rahul Sinha Creator

(No description available)

Suggested Creators

Rahul Sinha