cs201/PG1/PG1.h

19 lines
284 B
C
Raw Normal View History

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