First off, if you plan on using C++, use correct C++ includes ie:
Code:
#include <stdio.h>
#include <iostream.h>
#include <string.h>
Is bad
Code:
#include <iostream>
#include <string>
using std namespace;
is better
Another thing
Code:
string schoice;
...
switch(schoice1)
{
Switch only takes
Intrinsic types So you'll have to change the way you're using teh switch here.
Else keep up the good work.