#ifndef HYDROGEN_ATOM_H #define HYDROGEN_ATOM_H #include //for size_t class hydrogen_atom { private: static const int z {1}; //atomic number int electrons[z]; int protons[z]; public: hydrogen_atom() {} static int period() { //which row of the periodic table? int p {1}; for (; z > 2 * p * p; ++p) { } return p; } }; #endif