Help for this page

Select Code to Download


  1. or download this
    double hypotenuse (double val_x, double val_y)
    {
        return sqrt (val_x*val_x + val_y*val_y);
    }
    
  2. or download this
    #include "hypotenuse.h"
    
  3. or download this
    MODULE = Geometry        PACKAGE = Geometry