首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
hypot专题
C语言函数--hypot( ):计算直角三角形的斜边长
c语言函数double hypot(double x, double y) 计算 直角三角形的斜边长; 示例#include <stdio.h> #include <math.h> int main(void) { double x = 4.0; double y = 5.0; double result = hypot(x, y);
阅读更多...