-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathestagio.cpp
More file actions
40 lines (28 loc) · 600 Bytes
/
estagio.cpp
File metadata and controls
40 lines (28 loc) · 600 Bytes
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
#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
int main() {
int n, test=1;
cin >> n;
while (n != 0) {
vector< pair<int, int> > v;
while (n--) {
int cod, media;
cin >> cod >> media;
v.push_back(make_pair(cod, media));
}
int max = 0;
for (int i = 0; i < v.size(); i++)
if (v[i].second > max) max = v[i].second;
cout << "Turma " << test << endl;
for (int i = 0; i < v.size(); i++)
if (v[i].second == max) cout << v[i].first << " ";
cout << endl << endl;
cin >> n;
test++;
}
return 0;
}