Okay, ich möchte ein Programm erstellen, das sowohl die Diskriminante einer quadratischen Gleichung als auch die Anzahl der Wurzeln finden kann. Ich habe bis jetzt das Programm erstellt, um die Diskriminante zu finden, aber ich habe Probleme, die Methode aufzurufen, um die Anzahl der Wurzeln zu finden. Kann mir bitte jemand erklären, wie das gemacht wird? Vielen Dank.Wie wird eine Methode mit Parametern aufgerufen?
public class quadMethods
{
public static void main (String args[])
{
new quadMethods();
}
public quadMethods()
{
System.out.println ("The discriminant is: " + discrim (1, 6, 8));
System.out.println ("The number of roots is: " + numRoots (1, 6, 8));
}
public double discrim (double a, double b, double c)
{ //assumes ax^2+bx+c=0
//returns the discriminant of the quadratic equation
//b*b-4*a*c
//replace the return 1
double discriminant = b*b-4*a*c;
return discriminant;
}
public int numRoots (double a, double b, double c)
{ //assumes ax^2+bx+c=0
//returns the number of roots for the quadratic equation
//call discrim method, make an if to return 0, 1, or 2.
//replace the return 1
return 1;
}
}
Bearbeiten Sie Ihre Frage nicht so, jemand hat sich Zeit genommen, Ihnen zu antworten. –
Entschuldigung. Ich möchte diesen Beitrag löschen, aber ich kann es nicht tun. – asdfghjkl9999
Nein, da Sie eine akzeptierte Antwort haben, was ist der Grund für das Löschen? –