while (1) { if (n < 0) break; foo(n); n = n - 1; }. The while~(1) loop is a ... The statement above does exactly the same thing as while (n >= 0) { foo(n); ...
確定! 回上一頁