Mar 21, 2013 at 5:38am UTC
This is what I have come up with so far, but I keep getting errors although I have been working with this for hours now.
#include "stdafx.h"
using namespace Std;
#include"../../../std_lib_facilities.h"
int convert(int x,int y,int z,int g){
int alphabet;
vector<int>myalphabet(3);
int alphabet;
for (int index = 0; index !=4; ++index)
}
cout<<"please enter some number after each prompt"<<endl;
cin>>alphabet;
myalphabet.push_back(alphabet);
}
z= convert(0,1,2,3);
cout<<"the number which you entered one by one are"<<z;
Last edited on Mar 27, 2013 at 2:50am UTC
Mar 21, 2013 at 6:49am UTC
i guess you are working with visual studio, while creating a new project, please uncheck the pre compiled header option, use the headers suggested by Smac89 in ur source files, that will remove the errors.