Here you can find the source of div(final double a, final double b)
Parameter | Description |
---|---|
a | the a |
b | the b |
public static double div(final double a, final double b)
//package com.java2s; //License from project: LGPL public class Main { /**/*from w w w . j a v a2s . co m*/ * Div. * * @param a the a * @param b the b * @return the double */ public static double div(final double a, final double b) { return a / b; } }