Hallo miteinander,
nun ich verstehe nicht wo das Problem ist, vielleicht verstehe ich die Aufgabenstellung nicht richtig, aber ich meine ich würde alles erfüllen wie es verlangt wird. Ich bitte um eine Hilfestellung! :(
package de.codegym.task.task02.task0217;
/*
Die kleinste aus vier Zahlen
*/
public class Solution {
public static int min(int a, int b, int c, int d) {
//schreib hier deinen Code
// int min2 = min(a,b);
if(min(a,b)<= c && min(a,b) <= d)
return a;
else if(min(a,b) <= c && min(a,b) <= d)
return b;
else if(c <= min(a,b)&& c<= d)
return c;
else if(d<= min(a,b) && d<= c)
return d;
return d;
}
public static int min(int a, int b) {
//schreib hier deinen Code
int kleinste = 0;
if ( a < b)
kleinste = a;
else if( a > b)
kleinste = b;
return kleinste;
}
public static void main(String[] args) throws Exception {
System.out.println(min(-20, -10));
System.out.println(min(-20, -10, -30, -40));
System.out.println(min(-20, -10, -30, 40));
System.out.println(min(-40, -10, -30, 40));
}
}