Advertisement
iqchan

Untitled

Oct 23rd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. #include<conio.h>
  4. using namespace std;
  5. int main()
  6. {
  7. int n;
  8. bool iscorrect;
  9. cout << "please, enter number"<< endl;
  10. cin >> n;
  11. if (n == 51)
  12. {
  13. cout << "Welcome" << endl;
  14. cout << "choose number scp object" << endl;
  15. int m;
  16. do {
  17. cin >> m;
  18. if (m == 173)
  19. {
  20. cout << "scp #173" << endl;
  21. cout << "class: evklid" << endl;
  22. cout << "Special Containment Procedures: Item SCP-173 is to be kept in a locked container at all times. When personnel must enter SCP-173's container, no fewer than 3 may enter at any time and the door is to be relocked behind them. At all times, two persons must maintain direct eye contact with SCP-173 until all personnel have vacated and relocked the container." << endl;
  23. cout << " Description: Moved to Site - 19 1993. Origin is as of yet unknown.It is constructed from concrete and rebar with traces of Krylon brand spray paint.SCP - 173 is animate and extremely hostile.The object cannot move while within a direct line of sight.Line of sight must not be broken at any time with SCP - 173. Personnel assigned to enter container are instructed to alert one another before blinking.Object is reported to attack by snapping the neck at the base of the skull, or by strangulation.In the event of an attack, personnel are to observe Class 4 hazardous object containment procedures." << endl;
  24. cout << "Personnel report sounds of scraping stone originating from within the container when no one is present inside.This is considered normal, and any change in this behaviour should be reported to the acting HMCL supervisor on duty." << endl;
  25. cout << " The reddish brown substance on the floor is a combination of fecesand blood.Origin of these materials is unknown.The enclosure must be cleaned on a bi - weekly basis." << endl;
  26. iscorrect = false;
  27. }
  28. else {
  29. cout << "file not found" << endl;
  30. iscorrect = true;
  31. }
  32. while (iscorrect);
  33. cout << "You found files for publication" << endl;
  34. cout << ">choice" << endl;
  35. cout << ">found other files" << endl;
  36. cout << ">escape" << endl;
  37. char text[100] = "escape";
  38. char answer[99];
  39. do
  40. {
  41. cout << " youchoice" << endl;
  42. cin >> answer;
  43.  
  44. } while (strcmp(text, answer) != 0);
  45. {cout << "you location in room. You see door what locating behind of terminal." << endl;
  46. cout << ">go to the door" << endl;
  47. }
  48. }
  49.  
  50. else
  51. {
  52. cout << "Alert, protection" << endl;
  53. cout << "you died" << endl;}
  54. }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement