Here you can find the source of pow3_strict(final float a)
Parameter | Description |
---|---|
a | A value. |
public static strictfp float pow3_strict(final float a)
//package com.java2s; //License from project: Open Source License public class Main { /**// ww w . j av a 2 s .c o m * Strict version. * * @param a * A value. * @return a*a*a. */ public static strictfp float pow3_strict(final float a) { return a * a * a; } /** * Strict version. * * @param a * A value. * @return a*a*a. */ public static strictfp double pow3_strict(final double a) { return a * a * a; } }