I want the following code to count backwards from 33 to 11 but I can't figure out why this does not work. I'm sure that I'm going to have a Homer Simpson "d'oh" moment when I finally learn the answer, but for now, I'd really appreciate any help.
for(int i = 33; i <= 11; i--)
{
System.out.println(i);
}
i >= 11