竞赛
考级
#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; }
:)
人
倒车请故意
共45条