Problem | contestcalc |
---|---|
User | isaackhong |
Submission Time | 2023-01-11 15:26:29 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
contestcalc.cpp: In function ‘int main()’:
contestcalc.cpp:42:13: error: ‘scores’ was not declared in this scope; did you mean ‘score’?
42 | a = scores[i].first;
| ^~~~~~
| score
contestcalc.cpp:48:26: error: expected ‘;’ before ‘if’
48 | key = namelist[i]
| ^
| ;
49 | if (count(AvgnameLst.begin(), AvgnameLst.end(),key)){
| ~~
contestcalc.cpp:56:16: error: ‘avgscoresp’ was not declared in this scope; did you mean ‘avgscores’?
56 | sum += avgscoresp[b];
| ^~~~~~~~~~
| avgscores
contestcalc.cpp:60:23: error: request for member ‘floor’ in ‘(sum / avgno)’, which is of non-class type ‘int’
60 | ans = (sum/avgno).floor
| ^~~~~