1. 程式人生 > >PAT-乙-1063 1063 計算譜半徑 (20 分)

PAT-乙-1063 1063 計算譜半徑 (20 分)

在這裡插入圖片描述

程式碼

#include <stdio.h>
#include <math.h>

int main() {

	int n;
	scanf("%d", &n);
	double max = 0;
	for(int i=0; i<n; i++){
		int a, b;
		scanf("%d %d", &a, &b);
		double t = sqrt(a*a+b*b);
		if(t>max){
			max = t;
		}
	}
	printf("%.2lf\n", max);

	return 0;
}

註解

水題

結果

在這裡插入圖片描述