Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.63 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class OutSide11 {
  4.   public static void main(String[] args){
  5.    
  6.     String string;
  7.     String string2;
  8.     String string3;
  9.    
  10. Scanner console = new Scanner(System.in);
  11.  
  12. System.out.println("What is on your mind? ");
  13. string = console.nextLine();
  14.  
  15. string2 = string.substring(0,string.indexOf(' '));
  16. string3 = string.substring(string2.length()+1,string.length());
  17.  
  18.  
  19. System.out.println(Character.toUpperCase(string3.charAt(0)) + string3.substring(1,string3.length()) + " " + Character.toLowerCase(string2.charAt(0)) + string.substring(1,string.indexOf(' '))  );
  20.                    
  21.  
  22.   }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement