Sininerebane

Untitled

Dec 25th, 2021
148
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 Zveddochki_new {
  2. public static void main(String[] args) {
  3. int n = 6;
  4. for (int i = 0; i < n; i++) {
  5. for (int j = n - i; j > 1; j--) {
  6. System.out.print(" ");
  7. }
  8.  
  9. for (int j = 0; j <= i; j++) {
  10. System.out.print("* ");
  11. }
  12.  
  13. System.out.println();
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment