diff options
| author | Chanin Timbal <[email protected]> | 2024-04-18 11:50:04 -0700 |
|---|---|---|
| committer | Chanin Timbal <[email protected]> | 2024-04-18 11:50:04 -0700 |
| commit | 8526bb62e363b0f8597e009d445d8210dcf2b435 (patch) | |
| tree | 117d64c93a2ecc521bde6ebf14c52369d504c8cf /CST 126/Homework 1/main.cpp | |
| parent | Currency Exchanger (diff) | |
| download | homework-1-chaninnohea-8526bb62e363b0f8597e009d445d8210dcf2b435.tar.xz homework-1-chaninnohea-8526bb62e363b0f8597e009d445d8210dcf2b435.zip | |
Completed Program of Currency Conversion
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); |