怎么才能用数组存储一系列的数据
怎么才能存储一系列的学生数据,如学号,姓名,分数等!
例如:
把学生的所有信息都封装成一个结构/类
struct Student
{
string no;
string name;
double score;
}
// 100个的数组
Student stdArray = new Student[100];
// 泛型链表
List<Student> stdList = new List<Student>();
...
都可以撒。