#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
class Student {
public:
vector<int> scores(5,0); // Initialize with 5 elements
void input() {
int val;
for (int i = 0; i < 5; i++) {
cin >> val;
scores.push_back(val);
}
}
int calculateTotalScore() {
int sum = 0;
for (int score : scores) {
sum += score;
}
return sum;
}
};
int main() {
int n; // number of students
cin >> n;
Student* s = new Student[n]; // an array of n students
for (int i = 0; i < n; i++) {
s[i].input();
}
// calculate kristen's score
int kristen_score = s[0].calculateTotalScore();
// determine how many students scored higher than kristen
int count = 0;
for (int i = 1; i < n; i++) {
int total = s[i].calculateTotalScore();
if (total > kristen_score) {
count++;
}
}
// print result
cout << count;
return 0;
}
Hi, I am trying to solve this problem from hackerrank : https://www.hackerrank.com/challenges/classes-objects/problem?isFullScreen=true
I am getting an error at line 10 , when I try to create a vector in this way: vector<int> scores(5,0); Kindly help me to fix the issue.
