
public class OperPrio
{
    public static void main(String[] args)
    {
        int x;

        x = 1 * 2 + 3;   // Put breakpoint here to demo
        x = 1 + 2 * 3;
        x = 4 - 3 + 2;
        x = 5 % 3 * 2;
        x = 5 / 3 * 2;   // Tricky!
    }
}
