سلام...خوب اگه اون عدد تصادفی رو دارین...همون میشه شماره سلول دیگه!
کد:
#include <iostream>
#include <cstdio>
#include <ctime>
using namespace std;
int getRandom(int min, int max) {
srand(time(NULL) * rand());
return rand() % (max + 1 - min) + min;
}
int main() {
int collection[10] = { 1, 2, 3, 4, 5, 4, 3, 2, 1, 0 };
int randomIndex = getRandom(0, 9);
cout << "Cell number >>> " << randomIndex << endl;
cout << "Cell value >>> " << collection[randomIndex] << endl;
}