aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk1/hw1_directory/strap012_1B.cpp
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2019-02-03 16:34:42 +0000
committerRossTheRoss <msattr@gmail.com>2019-02-03 16:34:42 +0000
commit64815b5e4741cbf2052878171c3a63a9eee84e94 (patch)
tree2b132db98d2590ed211825eaf32b509312302bbc /ee1301/wk1/hw1_directory/strap012_1B.cpp
parentAdd wk. 1 HW (diff)
downloadhomework-64815b5e4741cbf2052878171c3a63a9eee84e94.tar
homework-64815b5e4741cbf2052878171c3a63a9eee84e94.tar.gz
homework-64815b5e4741cbf2052878171c3a63a9eee84e94.tar.bz2
homework-64815b5e4741cbf2052878171c3a63a9eee84e94.tar.lz
homework-64815b5e4741cbf2052878171c3a63a9eee84e94.tar.xz
homework-64815b5e4741cbf2052878171c3a63a9eee84e94.tar.zst
homework-64815b5e4741cbf2052878171c3a63a9eee84e94.zip
First bit done
Diffstat (limited to 'ee1301/wk1/hw1_directory/strap012_1B.cpp')
-rw-r--r--ee1301/wk1/hw1_directory/strap012_1B.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/ee1301/wk1/hw1_directory/strap012_1B.cpp b/ee1301/wk1/hw1_directory/strap012_1B.cpp
index e69de29..472f96d 100644
--- a/ee1301/wk1/hw1_directory/strap012_1B.cpp
+++ b/ee1301/wk1/hw1_directory/strap012_1B.cpp
@@ -0,0 +1,19 @@
+#include <iostream>
+#include <string>
+using namespace std;
+
+int main()
+{
+ string option;
+ cout << "Are input components int or float (i/f)? ";
+ cin >> option;
+
+ if (option == "i") {
+ cout << "E";
+ }else{ if (option == "f") {
+ cout << "e";
+ }else{
+ cout << "nah.";
+ }
+ }
+} \ No newline at end of file