15.4

PHOTO EMBED

Mon Nov 28 2022 10:27:10 GMT+0000 (Coordinated Universal Time)

Saved by @KutasKozla

       fun(3,4,2);
        System.out.println( fun(10,100,164));
    }

    static int fun(int a, int b, int c) {
        if((a<b) && (b<c)){
            return c;
        }
        if ((b<a) && (c<a)){
            return a;
        }
        else {
            return c;
        }
    }
content_copyCOPY

//nieskonczone i troche slabe atm