started puzzle 3
This commit is contained in:
parent
a9b09b06ac
commit
54d4c86867
4 changed files with 47 additions and 0 deletions
21
3/puzzle3.cpp
Normal file
21
3/puzzle3.cpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#include <iostream>
|
||||
#include <regex>
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
#include <list>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main(int argc, char const *argv[])
|
||||
{
|
||||
|
||||
ifstream puzzle("puzzleInput", ifstream::in);
|
||||
|
||||
string line;
|
||||
while (getline(puzzle, line))
|
||||
{
|
||||
cout << line << endl;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue