Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 280 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 280 Bytes

3.18

long test(long x, long y, long z) {
    long val = x + y + z;
    if (x < -3) {
        if ( y < z) {
            val = x * y;
        }
        else {
            val = y * z;
        }
    }
    else if ( x > 2) {
        val = x * z;
    }
    return val;
}