class DowhileEx1 {
 public static void main(String args[]) {
  int i,j = 0;
  while(i<10) {
   while(j<j -i){
    System.out.println("*");
   }
  }
 }
}
/*
 * class DowhileEx1 {
 public static void main(String args[]) {
  int i = 0;
  while(i<11) {
   System.out.println("*");
   i++;
  }
 }
}
*/
//i를 ( 0-10 || 1-11) 까지 돌리고 j를 (0 - i || 1 -i ) 까지 돌리면됨

 

 

엉엉 ㅠ0ㅠ