SOURCE FILE: 016_testProg.cpp



#include <iostream>
using namespace std ;

int main (void)
{
   int number_of_items ;
   double total, price ;
   total = price * number_of_items ;
   price = 7.95 ; 
   number_of_items = 4 ;
   cout << total << endl ;
   return 0;
}