kirstenrose2943 kirstenrose2943 19-12-2022 Mathematics contestada Consider the following recursive method: public static int recur(int x) { if (x >= 0) return x + recur(x - 1); return 0; } What is returned by the method call recur(9)?