Advertisement
heysoul_sisypus

side pyramid loop

Feb 6th, 2020
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6.  
  7. package javaapplication114;
  8. /**
  9.  *
  10.  * @author Student
  11.  */
  12. public class JavaApplication114 {
  13.     public static void main(String[] args) {
  14.      
  15.     for(int i=1;i<=5;i++){for(int j=1;j<=i;j++){System.out.print(" * ");}System.out.println();}  
  16.    
  17.     }
  18.    
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement