remove newline from prompt

This commit is contained in:
Joel Beckmeyer 2017-04-23 21:02:10 -04:00
parent 2a7d351dec
commit 217e1aab71
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ int main() {
string fileName;
Simulation e;
cout << "Please enter filename:\n";
cout << "Please enter filename: ";
getline(cin, fileName);
e.parseCircuit(fileName);