1 2 3 4 5 6 7 8 9 10
#include "person.h" int main() { _person taro("Taro"); for (int i = 0; i < 3; i++) { taro.birthday(); taro.show(); } return 0; }