不太清楚你想表达什么意思,如果你问这怎么做,那我就只能说:“把学号、姓名、年龄、定义成私有数据成员,若干函数定义成public的,然后再main函数里面定义一个学生类对象,通过类对象调用成员函数。
由于不知你到底想要什么,就给你一个结构体变量的定义吧。struct student {int num;char name [12];int age ;int score[3];int total ;}st1,st2;