✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
1class cronometro {2public:3 cronometro(int t): t(t) {}4 void reiniciar();5 void parar();6 void seguir();7 int tiempo() const;8private:9 int t;10};