fork download
  1. class Main
  2. {
  3. public static void main(String[] args)
  4. {
  5. byte b = 1;
  6. // ...
  7. for(int i = 1; i <= 10; i++)
  8. {
  9. ++b;
  10. System.out.println(b + " ");
  11. }
  12.  
  13. }
  14. }
Success #stdin #stdout 0.02s 245632KB
stdin
Standard input is empty
stdout
2 
3 
4 
5 
6 
7 
8 
9 
10 
11