Ich möchte dass die beiden ergebnisse zurückgegeben werden. Also a und b.Aber wegen dem Komma zwischen a und b sagt er immer ´;´expected
class addieremultipliziere
{
float x;
float y;
float z;
float a;
float b;
public float addmult(float x, float y, float z)
{
a= x+y+z;
b= x*y*z;
return a,b;
}
}