Untitled

 avatar
unknown
c_cpp
a year ago
472 B
3
Indexable
#include <iostream>
#include <string>
using namespace std;

void fill(int m[], const int size, int a, int b) {
    for (int i = 0; i < size; i++)
    {
        m[i] = rand() % (b - a + 1) + a;
    }
    
}

int main()
{
    srand(time(0));
    const int N = 1000;
    int mas[N];
    int n;
    cin >> n;
    int a, b;
    cin >> a >> b;
    fill(mas, n, a, b);
    for (int i = 0; i < n; i++)
    {
        cout << mas[i] << " ";
    }
    }
Editor is loading...
Leave a Comment