#include<malloc.h> #include <stdio.h> #include<string.h> struct Book //构造书本结构体 { char name[114]; int price; }; void sort_price(struct Book*p...