Here you can find the source of abs(int i)
Parameter | Description |
---|---|
i | Zahl |
public static int abs(int i)
//package com.java2s; //License from project: Open Source License public class Main { /**/* w w w . j a va 2 s. c o m*/ * Betrag der gegebenen Zahl. * * @param d * Zahl * @return Betrag */ public static double abs(double d) { return d < 0 ? -d : d; } /** * Betrag der gegebenen Zahl. * * @param i * Zahl * @return Betrag */ public static int abs(int i) { return i < 0 ? -i : i; } }