fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. int a = 0;
  6. for(;a<5;){
  7. System.out.println(a++);
  8.  
  9. }
  10.  
  11. }
  12. }
Success #stdin #stdout 0.11s 54596KB
stdin
Standard input is empty
stdout
0
1
2
3
4