博客
关于我
1063 计算谱半径 (20 分)
阅读量:568 次
发布时间:2019-03-09

本文共 396 字,大约阅读时间需要 1 分钟。

1063 计算谱半径 (20 分)

在这里插入图片描述

输入样例:
5
0 1
2 0
-1 0
3 3
0 -3
输出样例:
4.24

AC代码

#include 
#include
#include
using namespace std;int main() { int N, a, b, Max; cin >> N; cin >> a >> b; Max = a*a + b*b; //默认第一组数据为最大结果 while (--N) { //注意--N 因为已经扫入一组数据 cin >> a >> b; int Tmp = a*a + b*b; if (Tmp > Max) Max = Tmp; //如遇新最大结果 更换之 } printf("%.2lf\n", sqrt(Max)); //得到最大谱半径 return 0;}

转载地址:http://zeipz.baihongyu.com/

你可能感兴趣的文章
MySql中关于geometry类型的数据_空的时候如何插入处理_需用null_空字符串插入会报错_Cannot get geometry object from dat---MySql工作笔记003
查看>>
mysql中出现Incorrect DECIMAL value: '0' for column '' at row -1错误解决方案
查看>>
mysql中出现Unit mysql.service could not be found 的解决方法
查看>>
mysql中出现update-alternatives: 错误: 候选项路径 /etc/mysql/mysql.cnf 不存在 dpkg: 处理软件包 mysql-server-8.0的解决方法(全)
查看>>
Mysql中各类锁的机制图文详细解析(全)
查看>>