答案有问题
请问错哪了?? #include
#includeusing namespace std; class Student { public: string m_strName; int m_iAge; }; int main() { Student stu; stu.m_strName = "慕课网"; stu.m_iAge = 2; cout << stu.m_strName<< " " << stu.m_iAge<< endl; return 0; }2017-04-20
举报