classes/ftest3.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;  // new: all symbols of the namespace CPPBook
                              // \breitevon{new: are considered global in this scope

    Fraction w(7,3);          // declare fraction w

    w.print();                // output fraction w

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

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