Absolute Value

You will be given an integer x. The absolute value of x will be within 100. You have to add 1 to x’s…

Click here to read the complete problem statement.


If you need help solving this problem, mention your approach and ask specific questions. Please avoid sharing your code and asking the Community to figure out “what’s wrong”.

import java.util.Scanner;
public class Practice{
public static void main(String [] args){
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();

    if(x<100){
        int sum = (Math.abs(x)) + 1;
        System.out.println(sum);
    }
}

}
what’s wrong here?