Start day11, day15; create prototype
This commit is contained in:
parent
a033002257
commit
9835baf23e
3 changed files with 69 additions and 0 deletions
18
prototypeFile.cpp
Normal file
18
prototypeFile.cpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main(void)
|
||||
{
|
||||
string rawInput;
|
||||
ifstream readFile ("data/input.txt", ios::in);
|
||||
while(getline(readFile, rawInput))
|
||||
{
|
||||
// File manip code goes here
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue