summaryrefslogtreecommitdiff
path: root/Lab3/CST116-Lab3-Florea.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Lab3/CST116-Lab3-Florea.cpp')
-rw-r--r--Lab3/CST116-Lab3-Florea.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/Lab3/CST116-Lab3-Florea.cpp b/Lab3/CST116-Lab3-Florea.cpp
new file mode 100644
index 0000000..b8c3fe0
--- /dev/null
+++ b/Lab3/CST116-Lab3-Florea.cpp
@@ -0,0 +1,34 @@
+// CST 116 - Andrei Florea - Lab 3
+
+
+#include <iostream>
+#include <string.h>
+
+using namespace std;
+
+using std::cout;
+using std::cin;
+using std::endl;
+
+string getFileName();
+
+int main()
+{
+ cout << "Hello World!\n";
+ getFileName();
+}
+
+string getFileName()
+{
+ string file_name;
+ cout << "Enter the name of the file including extension: " << endl;
+ cin >> file_name;
+
+ return file_name;
+}
+
+void readData()
+{
+ int pick_up_loc;
+ int drop_off_loc;
+} \ No newline at end of file