選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
230 B

  1. #include <string>
  2. #include "Person.h"
  3. Person::Person(string name, string password, string email, string phoneNo)
  4. {
  5. this->name = name;
  6. this->password = password;
  7. this->email = email;
  8. this->phoneNo = phoneNo;
  9. }