我新的編程和我的課我必須寫以下的方法和程序:布爾和方法
boolean allTheSame(double x, double y, double z)
返回的參數的平均值。
public static void main(String[] args) {
// **METHOD**//
Scanner in = new Scanner(System.in);
System.out.println("Enter variable for x");
double x = in.nextDouble();
System.out.println("Enter variable for y");
double y = in.nextDouble();
System.out.println("Enter variable for z");
double z = in.nextDouble();
boolean allTheSame = boolean allTheSame(x, y, z);
System.out.println(allTheSame);
}
// **TEST PROGRAM** //
public static boolean allTheSame(double x, double y, double z)
{
if (x == y && x == z)
{
return true;
}
else
{
return false;
}
}
}
鑑於我是新人,我該怎麼做?
你的具體問題是什麼? – OSborn
我知道,我對編程非常陌生,因爲你可以說不太擅長 – FahrenheitNinetyNine
你想知道什麼嗎? –