#include <iostream> #include <random> using namespace std; class student { public: long int number; float score1; float score2; float score3; }; int main() { student s; float d; scanf("%ld;%f,%f,%f",&s.number,&s.score1,&s.score2,&...