easy
2024-03-02 13:55:49
发布于:广东
9阅读
0回复
0点赞
解题
#include<bits/stdc++.h>
using namespace std;
int main(){
short a,b,c;
cin>>a>>b;
c=a*a+b*b;
printf("%.2f",sqrt(c));
}
用函数做
#include<bits/stdc++.h>
using namespace std;
int gougu(short a,short b){
short c=a*a+b*b;
printf("%.2f",sqrt(c));
}
int main(){
short a,b;
cin>>a>>b;
gougu(a,b);
}
欢迎加入团队:进步的蜗牛
欢迎在我的题单做题
这里空空如也
有帮助,赞一个