fork download
  1. i = 0
  2. while (i < 10):
  3. i += 0.5
  4. print(i)
  5.  
Success #stdin #stdout 0.02s 5852KB
stdin
Standard input is empty
stdout
0.5
1.0
1.5
2.0
2.5
3.0
3.5
4.0
4.5
5.0
5.5
6.0
6.5
7.0
7.5
8.0
8.5
9.0
9.5
10.0