#include<iostream>
#include <string.h>
using namespace std;
class student
{
public:
void Init()
{
cout << number << " " << score << " " << name;
}
void GetN(int n) { number=n; }
void GetS(int s) { score=s; }
void GetA(char a[]) { strcpy_s(name, a); }
private:
int number, score;
char name[50];
};
int main()
{
char a[9] = { "小红" };
student stu;
stu.GetN(10);
stu.GetS(100);
stu.GetA(a);
stu.Init();
return 0;
}
版权声明:本文为Karon_R原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。