для c++
числа в диапазоне от -50 до 50
Объяснение:
#include <iostream>
#include <string>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
const int size=7;
int arr[size];
cout << "Random array from 7 numbers" << endl;
for (int i=0; i<size; i++)
cout << (arr[i] = rand ()%51 -49) << endl;
}
const int abc = 77;
int array [abc];
cout << "Array from 77 elements" << endl;
for (int j=0; j<abc;j++)
cout << (array[j] = rand ()%51 -49) << endl;
return 0;
/* программа на Си */
/ * я выбрал числа в диапазоне [0; 99] */
для c++
числа в диапазоне от -50 до 50
Объяснение:
#include <iostream>
#include <string>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
const int size=7;
int arr[size];
cout << "Random array from 7 numbers" << endl;
for (int i=0; i<size; i++)
{
cout << (arr[i] = rand ()%51 -49) << endl;
}
const int abc = 77;
int array [abc];
cout << "Array from 77 elements" << endl;
for (int j=0; j<abc;j++)
{
cout << (array[j] = rand ()%51 -49) << endl;
}
return 0;
}
/* программа на Си */
/ * я выбрал числа в диапазоне [0; 99] */