Юлия Симбиркина
Как отсортировать объекты из структуры С++?
Вывести на екран всех людей старше 25лет.
Cod_C++:
#include
using namespace std;
struct Human{
char name[30];
char sex;
int year;
int height;
int weight;
};
int main(){
//The reading part START//
Human human[2];
for (int i = 0; i < 2; i++) {
cout