classes/ftest4.cpp

The following code example is taken from the book
Object-Oriented Programming in C++
by Nicolai M. Josuttis, Wiley, 2002
© Copyright Nicolai M. Josuttis 2002


// include header files for the classes that are being used
#include "frac.hpp"

int main()
{
    using namespace CPPBook;  // all symbols of the namespace CPPBook
                              //  are considered global in this scope

    // new: declare fraction w as a constant
    const Fraction w(7,3);

    w.print();                // output fraction w

    // declare x and initialize with the square of w
    Fraction x = w * w;

    // as long as x is less than 1000
    while (x < Fraction(1000)) {
        // multiply x by w and output
        x *= w;
        x.print();
    }
}