16 lines
244 B
C++
16 lines
244 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
class Person {
|
|
private:
|
|
std::string name;
|
|
|
|
public:
|
|
Person(const std::string& name) {
|
|
this->name = name;
|
|
}
|
|
|
|
void printName() {
|
|
std::cout << this->name << '\n';
|
|
}
|
|
}; |