Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class kap4_selfCheck21{
  4.    public static void main(String[] args){
  5.      
  6.       Scanner console = new Scanner(System.in);
  7.      
  8.       System.out.print("Write some text here: ");
  9.       String text = console.nextLine();
  10.      
  11.       if(Character.isUpperCase(text.charAt(0))){
  12.          System.out.println("First letter is a capital letter ;)");
  13.       }else{
  14.          System.out.println("First letter isn't a capital letter :/");
  15.       }
  16.    }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement