// Create a constant sentinel of -1
// 「Prime」 the loop
// Add the conditional to the loop so it continues
// as long as num is not equal to the sentinel
Scanner keyboard = new Scanner(System.in); //data will be entered thru keyboard
while (...) {
//process data
num = keyboard.nextInt();
}
我對此感到困惑。我會在身體內部和身體內部插入什麼東西,並製作一個-1的定點?另外什麼是在while循環中放置的適當條件?那麼,如何回答「只要num不等於sentinel就可以繼續添加條件到循環的問題」?如何在一個while循環中使用掃描器時「引發」一個循環並創建一個標記?