我想用多邊形做一些計算。所以我需要用戶輸入一些x和y座標。這由以下代碼執行:雖然循環中斷條件
private static boolean isX = true;
private static Scanner scanner = new Scanner(System.in);
private static double readDouble() {
double value = 0;
System.out.print("Koordinate " + (isX ? "X" : "Y") + " : ");
value = scanner.nextDouble();
if (!isX)
System.out.println("--------------------");
isX = !isX;
return value;
}
要計算多邊形的輪廓,我需要多邊形的總量。輸入在循環中執行。當最後一個多邊形數據具有與第一個相同的座標時,輸入應該結束。例如。第一個輸入將是X:1 Y:1,X:1,X:2將結束輸入。
double fX = readDouble(); double x = 0.0;
double fY = readDouble(); double y = 0.0;
int nVertex = 1;
while((x != fX) && (y != fY)){
nVertex++;
x = readDouble(); y = readDouble();
}
但是循環中的輸入只是執行一個。所以休息條件有些問題。
有什麼想法?