[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/Manoj18121812/JavaAllCode/main/CompareStringLength.java [Back]  [Original]

package AllDailyPractice;

import java.util.Scanner;

public class CompareStringLength {

	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("First string is greater than second.");
		 else if ( s1.compareTo(s2) < 0 )
		 System.out.println("First string is smaller than second.");
		 else 
		 System.out.println("Both strings are equal.");
		 }
		}
		

Web Proxy Viewer  |  New URL  |  Original Page