Here's my Code. I don't know why it doesn't work. I've tried a couple different IDEs. (Turbo C++, Dev C++, and CodeBlocks)
------------------------------------------------------------------------------------------------

// Created By Bobby Goulet
// Last Updated on December 10th 2005
// Page 366 #21 // This program will print a list of all
// positive integers less than 100 that
// are divisible by either 5 or 7. It
// will then print the number of
// integers that were found.
// Include Files
# include<iostream>
# include<iomanip>
# include<conio.h>
# include<apstring.cpp>

// Program
int main()
{
// Formatting
clrscr();
cout<<setiosflags(ios::left|ios::fixed|ios::showpoint);
cout<<setprecision(2);
// Variables
string Start;
int Stop;
int Number;
int ARemainder;
int BRemainder;
int Total;
// Introductory Text
cout<<"This program will print a list of all positive integers less than ";
cout<<"100 that are divisible by either 5 or 7. It will then print the ";
cout<<"number of integers that were found. To start the program, type in ";
cout<<"\"GO\"";
// Program Start Loop
cin>>Start;
while(Start!="GO"||Start!="go"||Start!="Go")
{
cin>>Start;
Stop=Stop+1;
if(Stop==5)
{
cout<<"(Type STOP to exit)";
Stop=0;
}
if(Start=="STOP"||Start=="STOP"||Start=="stop")
{
getch();
}
}
// Calculations
for(int Number=1; Number<=100 ; Number++)
{
ARemainder=Number%5;
if(ARemainder==0)
{
cout<<Number<<" is divisible by 5.";
Total=Total+1;
}
BRemainder=Number%7;
if(BRemainder==0)
{
cout<<Number<<" is divisible by 7.";
Total=Total+1;
}
if(ARemainder==0&&BRemainder==0)
{
Total=Total-1;
}
}
// Results
cout<<"A total of "<<Total<<" numbers were divisible by either 5 or 7.";
getch();
return 0;
}
-------------------------------------------------------------------------------------

There always seems to be a problem with my APSTRING functions.
That might be part of the problem.