您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
200 B

  1. #include <string>
  2. #include <iostream>
  3. using namespace std;
  4. class Person
  5. {
  6. string name;
  7. string password;
  8. string email;
  9. string phoneNo;
  10. public :
  11. Person(string, string, string, string);
  12. };