函数做法!!!!!!!!!!!!!!!!
2023-10-24 19:43:43
发布于:广东
2阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
void tra (int a,int b){
double c;
c=sqrt(pow(a,2)+pow(b,2));
cout<<setprecision(2)<<fixed<<c;
}
int main()
{
int a,b;
cin>>a>>b;
tra(a,b);
return 0;
}
这里空空如也
有帮助,赞一个