一堆菜鸟
2023-12-31 16:31:23
发布于:广东
29阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
double c;
cin>>a>>b;
c = sqrt(a*a+b*b);
//cout<< fixed<<setprecision(2)<<c;//方法一
printf("%.2f",c);
//浮点类型(小数类型)
//float---小数中杯
//double---超大杯
return 0;
}
这里空空如也
有帮助,赞一个