diff options
| author | Evan <[email protected]> | 2022-11-16 16:24:59 -0800 |
|---|---|---|
| committer | Evan <[email protected]> | 2022-11-16 16:24:59 -0800 |
| commit | e403b6b568b8f9fec8785f968586d50be511dfba (patch) | |
| tree | 2b8980d19c886b8611d00092e8114b1c05ded5c6 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | j (diff) | |
| download | cst116-lab3-evanmihm-e403b6b568b8f9fec8785f968586d50be511dfba.tar.xz cst116-lab3-evanmihm-e403b6b568b8f9fec8785f968586d50be511dfba.zip | |
hjk
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index e2b9159..9944142 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -1,23 +1,25 @@ //lab3 #include <iostream> #include <fstream> +#include <iomanip> using namespace std; using std::cin; using std::cout; using std::endl; +using std::setw; using std::ios; using std::ifstream; using std::ofstream; int main() -{ +{//the first 'array' is the descripption of what needs to be done in total 6 equations/things to do + //next tsxt is 6 cols by x rows ifstream inFile; ofstream outFile("infile.txt"); inFile.open("LabResults.txt"); -} - +}
\ No newline at end of file |