Here you can find the source of roundAdd(double a, double b)
Parameter | Description |
---|---|
a | Zahl 1 |
b | Zahl 2 |
public static int roundAdd(double a, double b)
//package com.java2s; //License from project: Open Source License public class Main { /**/*w ww .j ava 2 s.c o m*/ * Addieren und dann das Ergebnis runden. * * @param a * Zahl 1 * @param b * Zahl 2 * @return gerundetes Ergebnis */ public static int roundAdd(double a, double b) { return round(a + b); } /** * Runden. * * @param d * Zahl * @return gerundetes Ergebnis */ public static int round(double d) { return floor(d + .5); } /** * Abrunden. * * @param d * Zahl * @return aufgerundetes Ergebnis */ public static int floor(double d) { return (int) d; } }