Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include "Person.h"
- using namespace std;
- int main()
- {
- Person p1 = Person("123", "Ivan", "Ivanov", "Master", "Bulgaria");
- p1.introduce();
- cout << endl << endl;
- Person p2 = Person("24", "Mitko", "Ivailov", "Superman", "England");
- p2.introduce();
- cout << endl << endl;
- Person p3 = Person("12", "Maria", "Petrova", "Boss", "Germany");
- p3.introduce();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement