Given the integer variables x, y, and z, write a fragment of code that assigns the smallest of x, y, and z to another integer variable min.

LANGUAGE: JAVA

CHALLENGE:
Given the integer variables x, y, and z, write a fragment of code that assigns the smallest of x, y, and z to another integer variable min.

Assume that all the variables have already been declared and that x, y, and z have been assigned values .

SOLUTION:

LANGUAGE: JAVA

CHALLENGE:
Given the integer variables x, y, and z, write a fragment of code that assigns the smallest of x, y, and z to another integer variable min.

Assume that all the variables have already been declared and that x, y, and z have been assigned values .

SOLUTION:

if(x < y){
    if(x<z){
        min = x;
    }else{
        min = z;
    }
}else{
    if(y<z){
        min = y;
    }else{
        min = z;
    }
}