运行 ❯
拥有你
自己的
网站
×
更改方向
更改主题,暗色/亮色
转到 Spaces
#include <iostream> #include <cmath> using namespace std; int main() { cout << hypot(3.0f, 4.0f) << "\n"; cout << hypot(1.0, 1.0) << "\n"; cout << hypot(1.0, 10.0) << "\n"; return 0; }
5
1.41421
10.0499