Untitled
unknown
c_cpp
8 months ago
442 B
1
Indexable
Never
#include <iostream> #include <cmath> #include <math.h> #include <algorithm> using namespace std; void foo(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; foo(mas, n, a, b); for (int i = 0; i < n; i++) { cout << mas[i] << " "; } }
Leave a Comment