Advertisement
Strike15

Untitled

Jan 18th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class Program {
  2. public static void main(String[] args) {
  3.  
  4. String name;
  5. char letter;
  6.  
  7. name = "Blastoff"
  8.  
  9. ;
  10.  
  11. for(int i=0; i<name.length(); i++) {
  12. letter = name.charAt(i);
  13.  
  14. }
  15. System.out.println("How many seconds to liftoff");
  16.  
  17. System.out.println("3!");
  18. System.out.println("2!");
  19. System.out.println("1!");
  20. System.out.println(name + "!");
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement