Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Zveddochki_new {
- public static void main(String[] args) {
- int n = 6;
- for (int i = 0; i < n; i++) {
- for (int j = n - i; j > 1; j--) {
- System.out.print(" ");
- }
- for (int j = 0; j <= i; j++) {
- System.out.print("* ");
- }
- System.out.println();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment