arrays and functions

#include <iomanip>
#include <iostream>
using namespace std;
int buildARRAYS;
int levelsARRAY[num];
int scoresARRAY[num];
int starsARRAY[num];
const int num=400;

int main()
{
int buildARRAYS(int levelsARRAY[], int scoresARRAY[], int starsARRAY[])
{
int num1,i=0;
cout << "Enter the level number: " <<endl;
cin>>num1;
while(num1!=-999)
{
levelsARRAY[i]=num1;

cout<<"What was the score for the level: "<<endl;
cin>>num1;
scoresARRAY[i]=num1;

cout<<"How many stars were earned?: "<<endl;
cin>>num1;
starsARRAY[i]=num1;

cout << "Enter the level number: " <<endl;
cin>>num1;
i++;
}
return i;

}
void printARRAYS(string reportTITLE, int levelsARRAY[], int scoresARRAY[], int starsARRAY[], int numberOfLEVELS)
{
cout<<"Candy Crush UNSORTED Report"<<endl;
cin>>string reportTITLE;

}





}

this is what i have so far, i don't fully understand how to print these arrays mind you this is a BEGINNER class any help is greatly appreciated
You're code is almost the same as this guys: http://www.cplusplus.com/forum/general/116150/
Topic archived. No new replies allowed.