-3
這個循環的目的是在一個句點鍵輸入後立即停止,但它不工作,我不明白爲什麼。爲什麼這個do-while循環不停止?
import java.io.IOException;
public class ControlFlowTest {
public static void main(String[] args) throws java.io.IOException {
char ch ;
do{
ch = (char) System.in.read();
}while(ch != '.');
}
試着檢查'ch' cotains? –
https://ericlippert.com/2014/03/05/how-to-debug-small-programs/ –
[Works for me。](http://ideone.com/bu5wlT) – shmosel