cs201/PG1/PG1.h

19 lines
322 B
C++

//Ben Harris
//this is the header file...
#ifndef _PG1_
#define _PG1_
#include <iostream>
#include <string>
#include <cstdlib>
#include <sstream>
using namespace std;
int main (int argc, char **argv); //prototype
string div12 (string dividend, int &remainder);
string dozenal (string input);
#endif