用C++编写一个名为Person的类,该类包含name和age属性以及一个show( )方法用于打印姓名和年龄信息,编写主函数进行测试。
时间: 2024-03-12 07:49:39 浏览: 53
一个c++程序
好的,以下是符合要求的C++代码:
```c++
#include <iostream>
#include <string>
using namespace std;
class Person {
private:
string name;
int age;
public:
Person(string name, int age) {
this->name = name;
this->age = age;
}
void show() {
cout << "姓名:" << name << ",年龄:" << age << endl;
}
};
int main() {
Person p("张三", 20);
p.show();
return 0;
}
```
运行结果为:
```
姓名:张三,年龄:20
```
阅读全文