Expand number ranges FIXED by macik

import std.c.stdio;void main(){for(double x,y,z;scanf("%lf%lf%lf",&x,&y,&z)>0;)for(;x+.01<y;x+=z)printf("%g%c",x,x+z+.01<y?32:10);}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page