[恢]hdu 2071

2011-12-14 05:27:59

地址:http://acm.hdu.edu.cn/showproblem.php?pid=2071

题意:输出n个数里最大的数字。

代码:

# include <stdio.h>


int main ()
{
int T, n ;
double max, high ;
scanf ("%d", &T) ;
while (T--)
{
scanf ("%d", &n) ;
max = -1 ;
while (n--)
{
scanf ("%lf", &high) ;
if (high > max)
max = high ;
}
printf ("%.2lf\n", max) ;
}
return 0 ;
}



posted @ 2012-01-06 14:43  Seraph2012  阅读(134)  评论(0编辑  收藏  举报