blob: b8c3fe0a409799beff9a3d69c55c993396d48dbf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
}
|