w3resource

Java: Convert an integer value to absolute value

Java Math Exercises: Exercise-8 with Solution

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.

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to convert Roman number to an integer number.
Next: Write a Java program to convert a float value to absolute value.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/math/java-math-exercise-8.php