I'm trying to find the int with the lowest value, and I only know how to set it up like this:

Let's say x1 is the lowest.


int x1, x2, x3, x4;

if (x1 < x2 && x1 < x3 && x1 < x4)...