w3resource

Java: Convert an integer value to absolute value


Integer to Absolute Value

Write a Java program to convert an integer value to an absolute value.

Sample Solution:

Java Code:

import java.util.*;
public class Exercise8 {
 public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        System.out.print("Input an integer number: ");
        int x = in.nextInt();  
        System.out.printf("The absolute value of %d is: %d",x, convert (x));
		System.out.printf("\n");
    }
    public static int convert (int n)
	{
		int absvalue = (n >= 0) ? n : -n;
		return absvalue;
	}
}

Sample Output:

Input an integer number: 25                                            
The absolute value of 25 is: 25   

Flowchart:

Flowchart: Convert an integer value to absolute value.



For more Practice: Solve these Related Problems:

  • Write a Java program to compute the absolute value of an integer using only bit manipulation.
  • Write a Java program to implement a custom absolute value method using a ternary operator.
  • Write a Java program to compare a custom absolute value function with Math.abs over various test cases.
  • Write a Java program to compute the absolute value of an integer without conditional statements by using arithmetic tricks.

Go to:


PREV : Roman to Integer Conversion.
NEXT : Float to Absolute Value.

Java Code Editor:

Improve this sample solution and post your code through Disqus

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.