为啥运行不了?
struct Student
{
int math;
int english;
}
int main(int argc,char **argv)
{
struct Student stu[50];
//为其中一个学生的成绩赋值
stu[20].math = 90;
stu[20].english = 95;
return 0;
}struct Student
{
int math;
int english;
}
int main(int argc,char **argv)
{
struct Student stu[50];
//为其中一个学生的成绩赋值
stu[20].math = 90;
stu[20].english = 95;
return 0;
}2022-11-18
举报