aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChanin Timbal <[email protected]>2024-04-18 11:50:04 -0700
committerChanin Timbal <[email protected]>2024-04-18 11:50:04 -0700
commit8526bb62e363b0f8597e009d445d8210dcf2b435 (patch)
tree117d64c93a2ecc521bde6ebf14c52369d504c8cf
parentCurrency Exchanger (diff)
downloadhomework-1-chaninnohea-8526bb62e363b0f8597e009d445d8210dcf2b435.tar.xz
homework-1-chaninnohea-8526bb62e363b0f8597e009d445d8210dcf2b435.zip
Completed Program of Currency Conversion
-rw-r--r--CST 126/Homework 1/main.cpp4
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);