#include <iostream>
#include "finalScore.cpp"
#include "getGrades.cpp"
using namespace std;

// η main χρησιμοποιειθ τισ συναρτησεισ ποθ εχοθμε ορισει για την ολοκληρωσητησ ασκησης

int main(){
	Grade student;
	getGrades(student);
	cout << "Αναλθτικη βαθμολογια: \n πρωτο τεστ:" << student.test1 <<"\n δευτερο τεστ:" <<student.test2 <<"\n ενδιαμεσο διαγωνισμα:" <<student.semiFinalTest <<"\n τελικο τεστ:"<<student.finalTest <<endl;
	cout <<"ο Αριθμητικος τελικος βαθμος ειναι: " << student.overallGrade <<"\n ο  Γραμματικος Τεκιοσ Βαθμος ειναι:" <<student.GrammaticalScore <<endl;

	return 0;

};
