BlueBook
Write a program where you are given a list of
Input Specification
The first line of input will be an integer,
Output Specification
Output the largest number at the end rounded to two decimal places. Do not rearrange the rest of the numbers and output them as inputted (rounded to two decimal places).
Sample Input
Copy
4
3
2.7
5.12
-0.63
Sample Output
Copy
3.00
2.70
-0.63
5.12
Comments