0_0_33356683_16199.cpp: In function 'bool compare(student, student)':
0_0_33356683_16199.cpp:20:8: error: 'struct student' has no member named 'numAC'
if (a.numAC < b.numAC) return false;
^
0_0_33356683_16199.cpp:20:18: error: 'struct student' has no member named 'numAC'
if (a.numAC < b.numAC) return false;
^
0_0_33356683_16199.cpp:21:8: error: 'struct student' has no member named 'numAC'
if (a.numAC > b.numAC) return true;
^
0_0_33356683_16199.cpp:21:18: error: 'struct student' has no member named 'numAC'
if (a.numAC > b.numAC) return true;
^
0_0_33356683_16199.cpp:23:8: error: 'struct student' has no member named 'markTime'
if (a.markTime > b.markTime) return false;
^
0_0_33356683_16199.cpp:23:21: error: 'struct student' has no member named 'markTime'
if (a.markTime > b.markTime) return false;
^
0_0_33356683_16199.cpp:24:8: error: 'struct student' has no member named 'markTime'
if (a.markTime < b.markTime) return true;
^
0_0_33356683_16199.cpp:24:21: error: 'struct student' has no member named 'markTime'
if (a.markTime < b.markTime) return true;
^
|