#include <iostream> #include<iomanip> using namespace std; double mx(int a, int b) { if (a > b)return a; else return b; } double mn(int c, int d) { if (c < d)return c; else return d; } int main() { double a, b, c, d, e, f, g; double avg; double max, min...