July 2022 1 6 Report
Определить тип данных структура, имеющий поля фамилия, страна и результаты шести выступлений. Определить массив из 10 структур. В программе ввести в массив данные и вывести на экран список спортсменов по странам. Определить спортсмена занявшие последние место.си++

#include
#include
#include
#include
#include
#include
#include
#include

using namespace std;

struct sports
{
char famil[15];
char strana[15];
int vistup1;
int vistup2;
int vistup3;
int vistup4;
int vistup5;
int vistup6;
}mas[10];
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.