#include <iostream>
#include <time.h>
using namespace std;
int main()
{
srand(time(NULL));
setlocale(LC_CTYPE, "Russian");
int a[7];
cout << "Массив: ";
//ЕСЛИ МАССИВ НУЖНО ЗАПОЛНИТЬ РАНДОМНО
for (int i = 0; i < 7; i++)
a[i] = -5 + rand() % 50;
cout << a[i] << " ";
}
//ЕСЛИ МАССИВ НУЖНО ЗАПОЛНИТЬ ВРУЧНУЮ
int b[7];
cout << endl<< "Введите элементы массива: "<<endl;
for (int k = 0; k < 7; k++)
cin >> b[k];
cout << b[k]<<" ";
return 0;
ответ: c++
const int N = 10;
int A[N] = { 14, 25, 13, 30, 76, 58, 32, 11, 41, 97 };
for (int i = 0; i < N; i++)
for (int j = N - 1; j > i; j--)
if (A[j] % 10 < A[j-1] % 10)
swap(A[j-1], A[j]);
cout << "The array after sorting:" << endl;
cout << A[i] << " ";
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
srand(time(NULL));
setlocale(LC_CTYPE, "Russian");
int a[7];
cout << "Массив: ";
//ЕСЛИ МАССИВ НУЖНО ЗАПОЛНИТЬ РАНДОМНО
for (int i = 0; i < 7; i++)
{
a[i] = -5 + rand() % 50;
cout << a[i] << " ";
}
//ЕСЛИ МАССИВ НУЖНО ЗАПОЛНИТЬ ВРУЧНУЮ
int b[7];
cout << endl<< "Введите элементы массива: "<<endl;
for (int k = 0; k < 7; k++)
{
cin >> b[k];
}
cout << "Массив: ";
for (int k = 0; k < 7; k++)
{
cout << b[k]<<" ";
}
return 0;
}
ответ: c++
#include <iostream>
using namespace std;
int main()
{
const int N = 10;
int A[N] = { 14, 25, 13, 30, 76, 58, 32, 11, 41, 97 };
for (int i = 0; i < N; i++)
{
for (int j = N - 1; j > i; j--)
{
if (A[j] % 10 < A[j-1] % 10)
{
swap(A[j-1], A[j]);
}
}
}
cout << "The array after sorting:" << endl;
for (int i = 0; i < N; i++)
{
cout << A[i] << " ";
}
return 0;
}