// Justin C. Miller
// University of Wisconsin Oshkosh
// Made for: http://www.geocities.com/neonprimetime.geo/index.html
// Date: 2001
// Borland Builder 4.0
#include 

int main()
{
        double hourlyrate = 0.0 ;
        double hours = 0 ;
        int input = 1 ;

        while(input != -1)
        {
                cout << "Please enter your hourly rate...." << endl ;
                cin >> hourlyrate ;

                cout << "Please enter your hours..." << endl ;
                cin >> hours ;

                cout << "Your Salary is...$" << (hourlyrate * hours) << endl ;
                cout << "Would you like to calculate another?" << endl ;

                cout << "(Please enter 1 yes, -1 for no)" << endl ;
                cin >> input ;
        }

        return 0 ;
}


    Source: geocities.com/neonprimetime.geo/cpp/cpp_SourceCode

               ( geocities.com/neonprimetime.geo/cpp)                   ( geocities.com/neonprimetime.geo)