diff options
Diffstat (limited to 'CST 126/Homework 1/main.cpp')
| -rw-r--r-- | CST 126/Homework 1/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CST 126/Homework 1/main.cpp b/CST 126/Homework 1/main.cpp index 0bbb72b..8d10dad 100644 --- a/CST 126/Homework 1/main.cpp +++ b/CST 126/Homework 1/main.cpp @@ -5,6 +5,10 @@ // This program converts an amount from one chosen currency into another #include <iostream> +#include <cctype> +#include <cstring> +using std::cout; +using std::cin; //Protoypes float convert(float input, float output, float amount); |