✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
(Richtzeit: 3 Minuten)
Gegeben ist folgender Source-Code
public int add(int a, int b, int c) {
return(a+b+c);
}
public int add(int a, int b){
// Welcher Code kommt hier?
}
Welcher Source-Code passt, damit die untere add-Methode die obere aufruft und die Summe von a und b dadurch berechnet wird?