cs201/PG3/PG3.h

16 lines
216 B
C++

//Ben Harris
//Header file for PG3
#ifndef _PG3_
#define _PG3_
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
int main(int argc, char **argv);// Main method.
#endif