Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1.  
  2. package T6;
  3.  
  4. import java.util.Scanner;
  5.  
  6. public class T6_Q3 {
  7.  
  8. public static void main( String[] args) {
  9.  
  10. Scanner input = new Scanner(System.in);
  11.  
  12. String str1 , str2;
  13. System.out.print(" Enter string -1: ");
  14. str1 = input.nextLine();
  15. System.out.print(" Enter string -2: ");
  16. str2 = input.nextLine();
  17.  
  18. if ( str1.compareTo(str2) > 0)
  19. {
  20. System.out.print(str2 + " " + str1);
  21.  
  22. } else {
  23. System.out.print(str1 + " " + str2);
  24. }
  25.  
  26.  
  27. }
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement