Advertisement
Guest User

RaynorI_PlayButton

a guest
Apr 18th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. //Isaac Raynor
  2. //Regan
  3. //1st
  4. //Play Button
  5. import java.util.Scanner;
  6.  
  7. public class Program {
  8. public static void main(String[] args) {
  9.  
  10. for(int i = 1; i <= 5; i++) {
  11. for(int s = 0; s < i; s++) {
  12. System.out.print("*");
  13. }
  14. System.out.println();
  15. }
  16.  
  17. for(int i = 5; i >= 1; i--) {
  18. for(int s = 0; s < i; s++) {
  19. System.out.print("*");
  20.  
  21. }
  22. System.out.println();
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement