cs201/PG1/PG1.h

19 lines
284 B
C++

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