Untitled

mail@pastecode.io avatar
unknown
c_cpp
8 months ago
352 B
1
Indexable
Never
#include <iostream>
#include <time.h>
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);





}
Leave a Comment