Java #18:How to Round a Number in Java

//Number that is going to be Rounded
double preRound = 55.655688;

//Rounding the Number
double postRound = Math.round(preRound);

———————-Full Program——————–

//Programmer:Akinwale Owi
//Company:Dagba Computers
//Program Purpose:How to Round a Number in Java

package dagba.samples;

/**
*
* @author Akin
*/
public class DagbaSamples {

/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
//Answer the Number should be
double correctAnswer = 56;

//Number that is going to be Rounded
double preRound = 55.655688;

//Rounding the Number
double postRound = Math.round(preRound);

//printing out Correct Answer
System.out.println(“The rounded number should equal = “+correctAnswer);

//printing out the Rounded Number
System.out.println(preRound+” rounded is equal to = “+postRound);
}//end of main

}//end of public Dagba Class

Leave a comment