C++ プログラミングに Eclipse を使用するのはこれが初めてで、問題があります。既に "time.h" をインクルードしていますが、バグ (関数 'srand' を解決できませんでした) がまだ表示されます。私を助けてください!本当にありがとう
#include "iostream"
#include "time.h"
using namespace std;
#define MAX 100
void InputArray(int a[],int n)
{
srand((unsigned)time(NULL)); //error here Function 'srand' could not be solved
a[0]=rand()%10; //and here
for(int i=1; i<n; i++)
a[i]=a[i-1] + rand()%10 + 1;
}
int main() {
int a[MAX], n;
InputArray(a,n);
return 0;
}