Advertisement
Guest User

Debug a Program

a guest
Jan 23rd, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. /*Ellevon Shairrick
  2. Mrs. Regan
  3. Debug A Program
  4. 1/14/2020 */
  5.  
  6. import java.util.Scanner;
  7.  
  8. public class Program {
  9. public static void main(String[] args) {
  10. Scanner sc = new Scanner(System.in);
  11. int seconds;
  12. System.out.println("How many seconds until liftoff?");
  13. seconds = sc.nextInt();
  14.  
  15. while(seconds > 1) {
  16. seconds --;
  17. System.out.println(seconds + "!");
  18. if(seconds == 1) {
  19.  
  20.  
  21.  
  22.  
  23. System.out.println("Blastoff!");
  24. }
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement