diff options
| author | rPatrickWarner <[email protected]> | 2024-04-12 13:20:22 -0700 |
|---|---|---|
| committer | rPatrickWarner <[email protected]> | 2024-04-12 13:20:22 -0700 |
| commit | f46affeb9e0830a77261baa209a930c01ade457c (patch) | |
| tree | eebfe85bb96d1566ca3c4075ffe56a7d4eeb75d0 /CST 126/Homework 1/main.cpp | |
| parent | Added a header file (diff) | |
| download | homework-1-reecepwarner-f46affeb9e0830a77261baa209a930c01ade457c.tar.xz homework-1-reecepwarner-f46affeb9e0830a77261baa209a930c01ade457c.zip | |
Added foundation for conversions
Diffstat (limited to 'CST 126/Homework 1/main.cpp')
| -rw-r--r-- | CST 126/Homework 1/main.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/CST 126/Homework 1/main.cpp b/CST 126/Homework 1/main.cpp index 2a7169d..9768cd1 100644 --- a/CST 126/Homework 1/main.cpp +++ b/CST 126/Homework 1/main.cpp @@ -1,18 +1,19 @@ // Name: Reece Warner // Class: CST 126 -// Date: 4/3/24 +// Date: 4/10/24 // Assignment: Homework 1 -#include <iostream> -#include "helpers.h" -int main() -{ +//clear the screen after each menu choice&& change text color?? - - std::cout << "Hello World" << std::endl; +#include <iostream> +#include "Helper.hpp" +int main() +{ + double MyMoney = 5.04; + //std::cout << Dollars_USD(MyMoney); return 0; }
\ No newline at end of file |