A while loop that doesn't display negative numbers:
Code:
for(;;) cout << 42;
Strictly speaking that is a for loop not a while loop, when I saw this post I had
Code:
while(1)
;
in mind. The point these posts Greatness is that your original question (specification) is so loose (poorly specified) that many many constructs will fit what you have said although most of them are unlikely to do anything close to what you want.
When you post your next question please try to be a little more precise.
Comment