私はプログラムを書いていますが、何らかの理由でメインからゲームプレイ関数にアクセスできません。ただし、次のエラーが発生するだけです:
20:23: error: expected primary-expression before ']' token
コードは次のとおりです。
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int gameplay (int suitcase[], ofstream outputFile)
{
cout << "Here?";
return 0;
}
int main()
{
const int ARRAY_SIZE = 10;
int suitcase [ARRAY_SIZE] = {1, 10, 100, 1000, 10000, 100000, 1000000, 0, 0, 0};
ofstream outputFile;
outputFile.open ("players.txt");
gameplay(suitcase[], outputFile);
outputFile.close ();
return 0;
}
どんな助けでも大歓迎です、ありがとう!