1063 计算谱半径 (20 point(s))
作者:互联网
#include <bits/stdc++.h>
using namespace std;
int main() {
float n, max = 0, a, b;
cin >> n;
while(n--){
cin >> a >> b;
if(max < a * a + b * b) max = a * a + b * b;
}
cout << fixed << setprecision(2) << sqrt(max);
}
理解 “最大模” ,在集合内先对这些复数转化成模的形式,每个复数对应一个模,然后在这些不同的模中找出最大值。
标签:20,cout,point,int,max,1063,cin,复数 来源: https://www.cnblogs.com/Atl212/p/15236608.html