K12教育赛事综合服务平台
专注青少年竞赛题库网站
聚乐之家官方网站
下载聚乐之家官方App
struct Student { string name; int age; float score; }; struct Student students[20];
struct Student { string name; int age; float score; }; Student students[20];
struct Student { string name; int age; float score; }; Student* students = new Student[20];
struct Student { string name; int age; float score; }; Student students = new Student[20];