Ask Question
9 August, 21:10

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.

+3
Answers (1)
  1. 10 August, 00:28
    0
    You should specify what language you're using in these types of questions. Here's an example in C++, which is fairly easy to understand, so you should be able to transfer the concept to another language to problem.

    int x = 2, y = 1, z = 3, min;

    if (x < y && x < z)

    min = x;

    else if (y < x && y < z)

    min = y;

    else if (z < x && z < y)

    min = z;

    else

    std::cout << "There is no minimum";
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “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. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers