| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/Globostofo/cpp-programming/main/OOP2_Lab2/Source.cpp | [Back] [Original] |
#include
#include
using namespace std;
// Program #1
class Person {
private:
string name;
int age;
public:
Person() { // default constructor
age = 17;
name = "Rustam";
}
Person( int x ) {
age = x;
name = "Rustam";
}
void Display() {
cout
| Web Proxy Viewer | New URL | Original Page |