Advertisement
myloyo

моя гордость

Feb 25th, 2023
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.16 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <fstream>
  4.  
  5. using namespace std;
  6. ifstream in("input.txt");
  7. ofstream out("output.txt");
  8.  
  9. int main() {
  10.     string f;
  11.     getline(in, f);
  12.     int p = 1;
  13.     string s;
  14.     while (getline(in, s)) {
  15.         if (s == "|.." && p == 1) {
  16.             getline(in, s);
  17.             out << ">";
  18.             p = p + 1;
  19.             continue;
  20.         }
  21.         else if (s == "|.." && p == 2) {
  22.             getline(in, s);
  23.             out << "<";
  24.             p = p - 1;
  25.             continue;
  26.         }
  27.         else if (s == "..|" && p == 0) {
  28.             getline(in, s);
  29.             out << ">";
  30.             p = p + 1;
  31.             continue;
  32.         }
  33.         else if (s == "..|" && p == 1) {
  34.             getline(in, s);
  35.             out << "<";
  36.             p = p - 1;
  37.             continue;
  38.         }
  39.         else if (s[p] == 'o'){
  40.             getline(in, s);
  41.             out << "^";
  42.             continue;
  43.         }
  44.         else if (s[p] == '-') {
  45.             getline(in, s);
  46.             out << "v";
  47.         }
  48.         else if (s[p] == '.') {
  49.             getline(in, s);
  50.             out << "_";
  51.         }
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement