我剛剛開始學習Java,並且仍然習慣while循環。我希望輸出語句只顯示一次而不是多次。例如,語句應該說: 「1和5之間的偶數是:2 4」使用while循環重複輸出行?
代替: 「1和5之間的偶數是: 1和5之間的偶數是: 即使在1和5之間的整數是: 4「
如果我能得到一些反饋,我在做什麼錯在這裏,這將不勝感激。謝謝
//Declare variables
int n1, n2, sumOdd = 0;
int sum = 0;
int sumSquares = 0;
//Part B
int count = n1;
while (count < n2)
{
if (count % 2 ==0)
{
System.out.println(count);
}
count++;
System.out.println("Even integers between " + n1 + " and " + n2 + " are: ");
} //end loop
在while循環之外(以及之後)移動print語句。此外,您將需要使用數組或集合來緩存匹配的數字,直到您準備好打印它們。 –