SOURCE FILE: 030_powCalcA_0.0.cpp



/*
     This represents a plan for a program -
     a pseudo-code description of what the 
     program is supposed to do.
*/

#include <iostream> 
using namespace std ; 

int main (void) 
{
   /*  (The pseudo-code is commented out
        to prevent potential compiler errors.)

      Print info on what the program does
     do
     {
        get the two inputs (n and m)
        if n and m are both positive
          compute n to the power m
          write the answer on the screen
     } while (n and m are both positive) ;

  */

  return 0; 
}