非法字符?程序运行可以啊
#include <iostream>
#include<stdlib.h>
#include <string>
using namespace std;
/**
* 定义类:Student
* 数据成员:名字、年龄
*/
class student
{
public:
// 定义数据成员名字 m_strName 和年龄 m_iAge
string m_strName;
string m_iAge;
};
int main()
{
// 实例化一个Student对象stu
student stu;
// 设置对象的数据成员
stu.m_strName = "慕课网";
stu.m_iAge = "2";
// 通过cout打印stu对象的数据成员
cout << "student name is " << stu.m_strName << endl<<"student age is "<<stu.m_iAge<<endl;
system("pause");
return 0;
}