竞赛
考级
#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; }
ཌༀ130****2142ༀད
#include<iostream> #include<cmath> using namespace std; int main(){ int a,b; cin>>a>>b; double c; c=sqrt(aa+bb); printf("%.2lf",c); return 0; }
王以恒
#include<bits/stdc++.h>; using namespace std; int main(){short a,b,c;cin>>a>>b;c=aa+bb;printf("%.2f",sqrt(c));return 0;}
射手骑着龙——互
136****4819
#include <bits/stdc++.h> using namespace std; int main(){ int a,b; cin >> a >> b; printf("%.2f",sqrt(aa+bb)); return 0; }
T0
#include <bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; double c= pow(a,2)+pow(b,2); printf("%.2lf",sqrt(c)); return 0; }
~Lyney~
#include<iostream> #include<iomanip> #include<cmath> using namespace std; int main(){ float a,b; cin>>a>>b; cout<<std::fixed<<setprecision(2)<<sqrt(aa+bb); return 0; }
:)
人
倒车请故意
共49条