mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
5 lines
87 B
C
5 lines
87 B
C
#include <math.h>
|
|
|
|
double hypotenuse(double a, double b) {
|
|
return sqrt(a*a + b*b);
|
|
}
|