結(jié)構(gòu)體
struct Studentinfo //定義結(jié)構(gòu)體
{
? ? ? ? public int age;
? ? ? ??public string name;
? ? ? ??public int grade;
? ? ? ? public int studentID;
}
static void Main(string[] args)
{
? ? ? ? Studentinfo student1;//使用結(jié)構(gòu)體
? ? ? ? student1.grade = 2;
? ? ? ? student1.age = 17;
? ? ? ? student1.studentID = 202510;
? ? ? ? Console.WriteLine(student1.grade);//輸出
? ? ? ? Console.WriteLine(student1.studentID);
===================================================
Studentinfo[] students=new Studentinfo[10];//使用數(shù)組管理結(jié)構(gòu)體,假如有10個學(xué)生,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //那就中括號里寫10
student1[0].age=18;//給0號學(xué)生賦值,年齡為18
console.writeline(students[0].age);//輸出0號學(xué)生的年齡
}
標簽: