Guest User

Untitled

a guest
Oct 19th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Figure {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. int i = 0;
  8. System.out.print("Максимальная высота: ");
  9. Scanner s = new Scanner(System.in);
  10. int apex = s.nextInt();
  11.  
  12. do {
  13. for(int i1 = 0; i1 <= i; i1++)
  14. System.out.print("*");
  15. System.out.println();
  16. i++;
  17. } while (i != apex-1);
  18.  
  19. do {
  20. for(int i1 = 0; i1 <= i; i1++)
  21. System.out.print("*");
  22. System.out.println();
  23. i--;
  24. } while(i != -1);
  25.  
  26. }
  27.  
  28. }
Add Comment
Please, Sign In to add comment