horizantal shape

PHOTO EMBED

Tue Apr 18 2023 22:48:29 GMT+0000 (Coordinated Universal Time)

Saved by @Mohamedshariif #java

 //output
 *  *  *  *  *  *  *  *  *  * 
 *  *  *  *  *  *  *  *  *  * 
 *  *  *  *  *  *  *  *  *  * 
 *  *  *  *  *  *  *  *  *  * 
 *  *  *  *  *  *  *  *  *  * 
   
   for (int i = 1; i <= 5; i++)  // outer loop
      {
          for(int j= 1; j<=10; j++) // inner loop
          {
              System.out.print(" * ");
          }
          System.out.println(); // end the line
      }
    }
content_copyCOPY