#include <stdio.h> int checkDate(int monthInput, int dateInput); double calcPrice(int (*checkDate)(int, int), \ int monthInput, \ int dateInput, \ int flagCoupon, \ double price); // @brief 集合决定价格的因素 struct PriceFactor { double price; int month, date; int flagCoupon;// 有优惠券为1,无优惠券为0 } shopping...