Calculates the Pythagorean Theorem (c2 = a2 + b2). - Java java.lang

Java examples for java.lang:Math Geometry Shape

Description

Calculates the Pythagorean Theorem (c2 = a2 + b2).

Demo Code

/*/* w w  w  . jav a  2  s.  com*/
 * Copyright (c) 2011-Present. Codeprimate, LLC and authors.  All Rights Reserved.
 * 
 * This software is licensed under the Codeprimate End User License Agreement (EULA).
 * This software is proprietary and confidential in addition to an intellectual asset
 * of the aforementioned authors.
 * 
 * By using the software, the end-user implicitly consents to and agrees to be in compliance
 * with all terms and conditions of the EULA.  Failure to comply with the EULA will result in
 * the maximum penalties permissible by law.
 * 
 * In short, this software may not be reverse engineered, reproduced, copied, modified
 * or distributed without prior authorization of the aforementioned authors, permissible
 * and expressed only in writing.  The authors grant the end-user non-exclusive, non-negotiable
 * and non-transferable use of the software "as is" without expressed or implied WARRANTIES,
 * EXTENSIONS or CONDITIONS of any kind.
 * 
 * For further information on the software license, the end user is encouraged to read
 * the EULA @ ...
 */
//package com.java2s;

public class Main {
    /**
     * Calculates the Pythagorean Theorem (c2 = a2 + b2).
     *
     * @param a double value operand.
     * @param b double value operand.
     * @return the value for c using the Pythagorean Theorem
     * @see java.lang.Math#pow(double, double)
     * @see java.lang.Math#sqrt(double)
     */
    public static double pythagoreanTheorem(final double a, final double b) {
        return Math.sqrt(Math.pow(a, 2) + Math.pow(b, 2));
    }
}

Related Tutorials