guest9991 guest9991 Today at 12:42 AM Computers and Technology Answered What is the output of the following code snippet? static int puzzle(int x) if (x > 20) x -= 2; else if (x == 0) x = 4; // line 7 return x;