Could someone let me know the C# equivalent to the Java
Math.hypot(a,B)/>
Manyt thanks




Posted 02 April 2012 - 08:30 AM
Math.hypot(a,B)/>
Posted 02 April 2012 - 09:11 AM
public static double Hypotenuse(int a, int B)/>
{
return Math.Sqrt(Math.Pow(a, 2) + Math.Pow(b, 2));
}
This post has been edited by Sergio Tapia: 02 April 2012 - 09:13 AM
Posted 02 April 2012 - 01:20 PM
Posted 02 April 2012 - 01:25 PM
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
