As others have noted, Java's for-each iterates over an array or collection. "3" is not an array or collection, it's a single value. If Java allowed the construct you're suggesting, the only consistent implementation would be to "iterate" over the single value, 3. That is:
for (int i : 3) { System.out.println(i); }
would output:
3
Which doesn't seem very useful, which is probably why they didn't implement it.
Your question supposes that a single value like "3" implies a range. But why would you assume {0,1,2,3} ? Why not {1,2,3}? Or {-3, -2, -1, 0, 1, 2, 3}? Or {0.5, 1.0, 1.5, 2.0, 2.5, 3}? Or a literally infinite number of other possible variations.
To make it concrete, you'd have to specify the starting value, the ending value, and the increment. Hmm, maybe we could come up with a notation like this:
for (int i=0,3,1)
But that's still ambiguous. It's not clear if we want to continue until i==3, or until the last value <3. And we probably need to distinguish a plus increment from a minus incrment. So how about this, more flexible notation:
for (int i=0; i<=3; i=i+1)
Oh, wait, that's already supported. :-)
(for int i: n)...is not a Java idiom, and trying to shoehorn some other language style is usually going to run you into trouble – Java Drinker May 2 '11 at 15:50i3 times, e.g.), and could probably replace nearly half the for loops it the world. If I had a nickel for everyfor (int j=0; j<LIMIT; ++i)error I've made... – Grumdrig Jul 16 '11 at 4:44