Advertisement
Gauge1417

Untitled

Feb 28th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Program {
  4.  
  5. public static void main(String[] args) {
  6. // City Name
  7.  
  8. String city;
  9. Scanner sc = new Scanner(System.in);
  10. System.out.println("Enter your favorite city");
  11. city = sc.nextLine();
  12.  
  13. char initial = city.charAt(0);
  14.  
  15. System.out.println(city.length() );
  16.  
  17. System.out.println(city.toUpperCase());
  18.  
  19. System.out.println(city.toLowerCase());
  20.  
  21. System.out.println(city.substring(0,1));
  22.  
  23. System.out.println(city.substring(city.length()-3));
  24.  
  25.  
  26.  
  27.  
  28. }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement