Skip to content

Instantly share code, notes, and snippets.

View MarinaGolovata's full-sized avatar

MarinaGolovata

View GitHub Profile
#include <iostream>
#include <string>
using namespace std;
// Структура Student
struct Student {
string pib;
string group;
double average;
};