-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathclasses-objects.cpp
More file actions
60 lines (52 loc) · 1.28 KB
/
classes-objects.cpp
File metadata and controls
60 lines (52 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Classes and Objects
// Familiarize yourself with classes and objects.
//
// https://www.hackerrank.com/challenges/classes-objects/problem
//
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
// (template_head) ----------------------------------------------------------------------
// Write your Student class here
class Student
{
int score_ = 0 ;
public:
void input()
{
int x;
score_ = 0;
for (int i = 0; i < 5; ++i)
{
cin >> x;
score_ += x;
}
}
int calculateTotalScore() const
{ return score_; }
};
// (template_tail) ----------------------------------------------------------------------
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;
}