You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 regels
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. };