Question: Wat is the problem for this code? describe the problem and please fix it public class AddMe { static int num = 0; public static
Wat is the problem for this code? describe the problem and please fix it

public class AddMe { static int num = 0; public static int calc(int x) { num = num + 1; System.out.println(num); // add code here return num + calc(num + 1); } public static void main(String[] args) { AddMe.calc(num); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
