Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. cout << "place holder" << endl;
  9.  
  10. cout << "this is alot of text" << endl
  11. << "this is alot more text that is here to see" << endl
  12. << "what this sort of thing looks like on my screen" << endl
  13. << "and this will be the second to last line" << endl
  14. << "now I cannot think of much to write and now I will close" << endl
  15. << "\n\n";
  16.  
  17. cout << "this program is not threaded.\n\n" << endl;
  18.  
  19.  
  20.  
  21. string usr_input;
  22.  
  23.  
  24. cout << "mmds>";
  25.  
  26. cin >> usr_input;
  27.  
  28. cout << "\n\n";
  29.  
  30. while (true)
  31. {
  32. cout << "mmds>";
  33. // must declare what mmds is,
  34.  
  35. // string op_to_cscr_is;
  36. // op_to_cscr_is = "
  37. // op_cscr(op_to_cscr_is)
  38. //if usr_input == more than 1 then :
  39. // some code here
  40. // else:
  41. // add else code here
  42.  
  43. // if usr_input == "cmd":
  44. // if usr_input == "cmd" and next is a command,
  45. // execute command,
  46.  
  47.  
  48. }
  49.  
  50.  
  51. return 0;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement