class whileExampe {
 public static void main(String args[]) {
  int i,j = 0;
  while(i<11) {
   while(j<11){
    System.out.println("*");
   
   }
  }
 }
}

 

 

별을요

*

**

***

****

*****

******

*******

********

*********

**********

***********

 

11개를 찍어야 하는데 도와주십쇼