#include <iostream>
#include <string>
using namespace std;
class Student
{
public:
string m_strName;
string m_iAge;
};
int main()
{
Student stu;
stu.m_strName = "慕課網(wǎng)";
stu.m_iAge = 2;
cout << stu.m_strName << " " << stu.m_iAge << endl;
return 0;
}
#include <string>
using namespace std;
class Student
{
public:
string m_strName;
string m_iAge;
};
int main()
{
Student stu;
stu.m_strName = "慕課網(wǎng)";
stu.m_iAge = 2;
cout << stu.m_strName << " " << stu.m_iAge << endl;
return 0;
}