题解
2025-08-05 15:10:55
发布于:广东
2阅读
0回复
0点赞
#include<cstring>
#include<cmath>
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
float c;
c=sqrt(pow(a,2)+pow(b,2));
cout<<fixed<<setprecision(2)<<c;
return 0;
}
这里空空如也
有帮助,赞一个