Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Math Exercises: Convert an integer value to absolute value

Java Math Exercises: Exercise-8 with Solution

Write a Java program to convert an integer value to 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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe