-1

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;
}
4

1 に答える 1

4

するのを忘れた

#include <stdlib.h>
于 2012-07-19T07:56:21.107 に答える