#include<iostream>
using namespace std;
class GradeBook
{
public:
void displaymessage() const
{
cout << "Welcome to the Grade Book!" << endl;
}
};
int main()
{
GradeBook myGradeBook;
myGradeBook.displaymessage();
system("pause");
}
fig3.3
最新推荐文章于 2022-07-01 00:56:17 发布