Advertisement
yeskendir_sultanov

Data Structutre Sort

Mar 29th, 2024
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.88 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. struct Student {    
  6.     string name, surname;
  7.     int marks[5];
  8.    
  9.     double getAverageMark() {
  10.         int sum = 0;
  11.         for (int i = 0; i < 5; ++i) {
  12.             sum += marks[i];
  13.         }
  14.         return (sum / 5.0);
  15.     }
  16. };
  17.  
  18. bool cmp(Student A, Student B) {
  19.     return (A.getAverageMark() > B.getAverageMark());
  20. }
  21.  
  22. int main() {
  23.     std::ios_base::sync_with_stdio(false);
  24.     cin.tie(0);
  25.     cout.tie(0);
  26.     int n;
  27.     cin >> n;
  28.     Student a[n];
  29.     for (int i = 0; i < n; ++i) {
  30.         cin >> a[i].name >> a[i].surname;
  31.         for (int j = 0; j < 5; ++j) {
  32.             cin >> a[i].marks[j];
  33.         }
  34.     }
  35.    
  36.     sort(a + 0, a + n, &cmp);
  37.    
  38.     for (int i = 0; i < n; ++i) {
  39.         cout << a[i].name << " " << a[i].surname << " " << a[i].getAverageMark() << endl;
  40.     }
  41.     return 0;
  42. }
  43.  
  44.  
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement