fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. /* The class name doesn't have to be Main, as long as the class is not public. */
  4. class Main
  5. {
  6. public static void main (String[] args)
  7. {
  8. for(int i=1;i<=5;i++)
  9. {
  10. for(int k=0 ; k<i;k++)
  11. System.out.print("*");
  12. System.out.println();
  13. }
  14. }
  15. }
Success #stdin #stdout 0.08s 212416KB
stdin
stdout
*
**
***
****
*****