Programming Examples

Java program to find absolute value of number


Write a Java program that takes a number as input and calculates its absolute value using the Math.abs() function.

Solution

import java.util.Scanner;
public class AbsoluteValue 
{
    public static void main(String[] args) 
	{
        Scanner sc = new Scanner(System.in);
        System.out.print("Enter a number: ");
        double number = sc.nextDouble();
        double absoluteValue = Math.abs(number);
        System.out.println("The absolute value of " + number + " is " + absoluteValue);
    }
}
Output


Write a program to input any integer number and print its absolute value.

Non sign representation on number is known as Absolute value.

Solution

import java.util.Scanner;
public class AbsoluteValue 
{
    public static void main(String args[]) 
	{
        Scanner sc = new Scanner(System.in);
        System.out.print("Enter a number: ");
        int number = sc.nextInt();
        int absoluteValue=number;
        if (number < 0) 
		{
            absoluteValue = -number; // If number is negative, make it positive 
			// alternate method is : absoluteValue=number*-1;
        } 
        System.out.println("Absolute value of " + number + " is: " + absoluteValue);
    }
}
Output

Latest Current Affairs 2025 Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2025 Python Programming Tutorials Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Bank SSC Railway TET UPTET Question Bank career counselling in allahabad Sarkari Naukari Notification Best Website and Software Company in Allahabad Sarkari Exam Quiz