【问题描述】编写程序,从键盘输入n本书的名称和定价并存入链表中,从中查找定价最高和最低的书的名称和定价,并输出。
【输入形式】先输入书本数n(整型),再依次输入每本书的名称(字符串)和定价(实型)。
【输入输出样例】(下划线部分表示输入)
Input n:3
Input the name,price of the 1 book:C 21.5
Input the name,price of the 2 book:VB 18.5
Input the name,price of the 3 book:Delphi 25.0
The book with the max price:Delphi,price is:25.0
The book with the min price:VB,price is:18.5
#include <stdio.h>
#include <string.h>
#