摘要: #include <iostream> #include <string> using namespace std; class Customer { public: string name; int age; Customer(string n,int a) { name=n; age=a; } 阅读全文
posted @ 2023-12-24 00:38 秃头的小白 阅读(26) 评论(0) 推荐(0)