From 2a7d351deca74cf0bca555176ef2277bcd2a6888 Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Sun, 23 Apr 2017 21:00:56 -0400 Subject: [PATCH] ask for input --- src/radec.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/radec.cpp b/src/radec.cpp index cbbaa0f..6b0828d 100644 --- a/src/radec.cpp +++ b/src/radec.cpp @@ -8,6 +8,7 @@ int main() { string fileName; Simulation e; + cout << "Please enter filename:\n"; getline(cin, fileName); e.parseCircuit(fileName); @@ -24,4 +25,4 @@ int main() { // 4. Print the results of the simulation e.print(); -} \ No newline at end of file +}