Advertisement
MarufA

Untitled

Sep 18th, 2013
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class NameProgram
  4. {
  5. public static void main(String[] args)
  6. {
  7.  
  8. String NameFirst = "al";
  9. String NameLast = "maruf";
  10.  
  11. String WholeName = NameFirst + NameLast;
  12. int count = NameFirst.length();
  13.  
  14.  
  15. //if (NameFirst.length() == 1) return NameFirst.toUpperCase(0);
  16.  
  17. System.out.println(NameFirst);
  18. //System.out.println(WholeName);
  19. System.out.println("# of letters in first name = " + count);
  20.  
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement