M
makkksim
создать одномерный массив, заполнить его случайными значениями, отсортировать массив по убыванию.
получилось вот что:
#include <iostream>
#include <stdlib.h>
#include <time.h>
#include <cstdlib>
#include <iomanip>
using namespace std;
int main()
{
srand(time(NULL));
int mas[15];
int i;
for(i=0; i<15; i++)
{mas=10+rand()%90;
cout<<" "<<mas<<" ";}
cout<<"\n";
int temp;
for(i=0; i<15; i++)
{int max=mas;
int pos_max=i;
for(int j=i+1; j<15; j++)
{if(max<mas[j])
{max=mas[j];
pos_max=j;}
temp=mas;
mas=mas[pos_max];
mas[pos_max]=temp;}
cout<<" "<<mas<<" ";}
return 0;
}
но массив заполняется значениями и больше 90, а сортируются только первые 11 элементов.
получилось вот что:
#include <iostream>
#include <stdlib.h>
#include <time.h>
#include <cstdlib>
#include <iomanip>
using namespace std;
int main()
{
srand(time(NULL));
int mas[15];
int i;
for(i=0; i<15; i++)
{mas=10+rand()%90;
cout<<" "<<mas<<" ";}
cout<<"\n";
int temp;
for(i=0; i<15; i++)
{int max=mas;
int pos_max=i;
for(int j=i+1; j<15; j++)
{if(max<mas[j])
{max=mas[j];
pos_max=j;}
temp=mas;
mas=mas[pos_max];
mas[pos_max]=temp;}
cout<<" "<<mas<<" ";}
return 0;
}
но массив заполняется значениями и больше 90, а сортируются только первые 11 элементов.