home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Examples / StdLib / calc.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  4.1 KB  |  116 lines

  1. #include "stlexam.h"
  2. #pragma hdrstop
  3. /**************************************************************************
  4.  *
  5.  * calc.cpp - RPN Calculator -- Illustration of the use of stacks.
  6.  *      Section 10.2.1
  7.  *
  8.  ***************************************************************************
  9.  *
  10.  * (c) Copyright 1994, 1998 Rogue Wave Software, Inc.
  11.  * ALL RIGHTS RESERVED
  12.  *
  13.  * The software and information contained herein are proprietary to, and
  14.  * comprise valuable trade secrets of, Rogue Wave Software, Inc., which
  15.  * intends to preserve as trade secrets such software and information.
  16.  * This software is furnished pursuant to a written license agreement and
  17.  * may be used, copied, transmitted, and stored only in accordance with
  18.  * the terms of such license and with the inclusion of the above copyright
  19.  * notice.  This software and information or any other copies thereof may
  20.  * not be provided or otherwise made available to any other person.
  21.  *
  22.  * Notwithstanding any other lease or license that may pertain to, or
  23.  * accompany the delivery of, this computer software and information, the
  24.  * rights of the Government regarding its use, reproduction and disclosure
  25.  * are as set forth in Section 52.227-19 of the FARS Computer
  26.  * Software-Restricted Rights clause.
  27.  * 
  28.  * Use, duplication, or disclosure by the Government is subject to
  29.  * restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
  30.  * Technical Data and Computer Software clause at DFARS 252.227-7013.
  31.  * Contractor/Manufacturer is Rogue Wave Software, Inc.,
  32.  * P.O. Box 2328, Corvallis, Oregon 97339.
  33.  *
  34.  * This computer software and information is distributed with "restricted
  35.  * rights."  Use, duplication or disclosure is subject to restrictions as
  36.  * set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial
  37.  * Computer Software-Restricted Rights (April 1985)."  If the Clause at
  38.  * 18-52.227-74 "Rights in Data General" is specified in the contract,
  39.  * then the "Alternate III" clause applies.
  40.  *
  41.  **************************************************************************/
  42.  
  43.  
  44. #include <vector>
  45. #include <stack>
  46.  
  47. #ifdef _RW_STD_IOSTREAM
  48. #include <iostream>
  49. #else
  50. #include <iostream.h>
  51. #endif
  52.     
  53. #ifndef _RWSTD_NO_NAMESPACE
  54. using namespace std;
  55. #endif
  56.  
  57. //
  58. // Simulate the behavior of a simple integer calculator.
  59. //
  60.  
  61. class CalculatorEngine
  62. {
  63.   public:
  64.     enum binaryOperator { PLUS, MINUS, TIMES, DIVIDE };
  65.     int  currentMemory ()                { return data.top(); }
  66.     void pushOperand   (int value)       { data.push (value); }
  67.     void doOperator    (binaryOperator);
  68.   protected:
  69.     stack< int, vector<int,allocator<int> > > data;
  70. };
  71.  
  72. void CalculatorEngine::doOperator (binaryOperator theOp)
  73. {
  74.     int right = data.top();
  75.     data.pop();
  76.     int left = data.top();
  77.     data.pop();
  78.     switch (theOp)
  79.     {
  80.         case PLUS:   data.push(left + right); break;
  81.         case MINUS:  data.push(left - right); break;
  82.         case TIMES:  data.push(left * right); break;
  83.         case DIVIDE: data.push(left / right); break;
  84.     }
  85. }
  86.  
  87. int main()
  88. {
  89.     cout << "Calculator example program, from Chapter 8" << endl;
  90.  
  91.     cout << "Enter a legal RPN expression, end with p q (print and quit)" << endl;
  92.     int intval;
  93.     CalculatorEngine calc;
  94.     char c;
  95.     
  96.     while (cin >> c)
  97.         switch (c)
  98.         {
  99.             case '0': case '1': case '2': case '3': case '4':
  100.             case '5': case '6': case '7': case '8': case '9':
  101.                 cin.putback(c);
  102.                 cin >> intval;
  103.                 calc.pushOperand(intval);
  104.                 break;
  105.             case '+': 
  106.                 calc.doOperator(CalculatorEngine::PLUS); break;
  107.             case '-': calc.doOperator(CalculatorEngine::MINUS); break;
  108.             case '*': calc.doOperator(CalculatorEngine::TIMES); break;
  109.             case '/': calc.doOperator(CalculatorEngine::DIVIDE); break;
  110.             case 'p': cout << calc.currentMemory() << endl;
  111.             case 'q': cout << "End calculator program" << endl;
  112.                 return 0; // quit program
  113.         }
  114.     return 0;
  115. }
  116.