fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. std::string fileName;
  7. cout << "Please enter the directory containing the MP3 files you wish to have organised. " << endl;
  8. getline( cin, fileName);
  9. cout << "\"" + fileName + "\"";
  10. return 0;
  11. }
Success #stdin #stdout 0s 3432KB
stdin
my first file
stdout
Please enter the directory containing the MP3 files you wish to have organised. 
"my first file"