package M;
public abstract class a {
public static float a(float f4, float f5, float f6) {
return f4 < f5 ? f5 : f4 > f6 ? f6 : f4;
}
public static int b(int i4, int i5, int i6) {
return i4 < i5 ? i5 : i4 > i6 ? i6 : i4;
}
}
Download file