Advertisement
Shavit

P. 9 Ex. 9.5

Dec 24th, 2013
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. // Shavit Borisov
  2. // CW
  3.  
  4. import java.util.Scanner;
  5.  
  6. public class UpperLowerCase {
  7.  
  8.     public static void main(String[] args)
  9.    
  10.     {
  11.         Scanner in = new Scanner (System.in);
  12.        
  13.         String str;
  14.        
  15.         System.out.print("Enter a string: ");
  16.         str = in.nextLine();
  17.        
  18.         System.out.printf("%s\n%s", str.toUpperCase(), str.toLowerCase());
  19.        
  20.         in.close();
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement