#include <iostream> #include <iomanip> enum CPU_Rank { P1 = 1, P2, P3, P4, P5, P6, P7 }; class CPU { public: CPU(CPU_Rank r, int f, double v) : rank(r), frequency(f), voltnumber(v) { std::cout << "CPU's constructor is called!" <...