PROGRAMMING:Find the book with the highest price
Write a program to input the name and price of n (n < 10) books from the keyboard and store them in the structure array to find and output the information of the book with the highest price.
Input and output example: description in brackets, no input and output required
###Input example:
```in
three ( n=3)
Programming in C
twenty-one point five
Programming in VB
eighteen point five
Programming in Delphi
twenty-five
```
###Output example:
```out
highest price: 25.0, Programming in Delphi
```
answer:If there is no answer, please comment
Input and output example: description in brackets, no input and output required
###Input example:
```in
three ( n=3)
Programming in C
twenty-one point five
Programming in VB
eighteen point five
Programming in Delphi
twenty-five
```
###Output example:
```out
highest price: 25.0, Programming in Delphi
```
answer:If there is no answer, please comment