fork(1) download
  1. class HelloPrinter
  2. {
  3.  
  4. public static void main(String[] args)
  5. {
  6. for (int i = 0; i < 3; i++)
  7. {
  8. for (int j = 0; i < j; j++)
  9. {
  10. System.out.print("*");
  11. }
  12. System.out.println();
  13. }
  14. }
  15. }
Success #stdin #stdout 0.07s 215488KB
stdin
Standard input is empty
stdout