//I have written this program to calculate and display the ratio of two //different offices sales. But I'm getting two error messages I can't seem to //figure out whats wrong.
#include "stdafx.h"
#include<iostream>
#include<conio.h>
#include<string>
using namespace std;
int main()
{
SalesOffice north("North", 2454.88);
SalesOffice south("South", 2830.92);
double ratio;
ratio = north / south;
cout << "The North Office has " << (ratio * 100) <<
"% of the sales of South Office" << endl;
_getch();
return 0;
}