diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index ed5f807..70f43fd 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -2,12 +2,18 @@ // #include <iostream> +#include <fstream> +#include <iomanip> -using namespace std; using std::cout; using std::cin; using std::endl; +using std::setw; +using std::ios; +using std::ifstream; +using std::ofstream; + int main() { |