我有一個類似於此的循環。for循環while while循環+附加條件
int total1, total2;
for (total1 = fsize(myfile);;) {
total2 = fsize(myfile);
...
...
total1 = total2;
}
我想要做的是停止循環之前,將其轉換爲一個while
循環並檢查額外的條件。
我願做這樣的事情:
while((total1 = fsize(myfile)) && input = getch() != 'Q') {
total2 = fsize(myfile);
...
total1 = total2;
}
感謝
有這裏有個問題嗎? – bstpierre 2010-07-20 22:15:49
繼續前進。你應該將括號括起來((input = getch())!='Q')'。 – AShelly 2010-07-20 22:16:15
其實出於某種原因,它不會進入循環...所以我不太確定我是否正確地執行while循環。 – 2010-07-20 22:17:21