Advertisement
Guest User

mainFile

a guest
May 13th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. /**
  2.  *    author:  tourist
  3.  *    created: 12.05.2020 15:50:55
  4. **/
  5.  
  6. #include <iostream>
  7. #include <vector>
  8. #include <string>
  9.  
  10. int main() {
  11.     setlocale(LC_ALL, "rus");
  12.  
  13.     matrix<char>A(2,2);
  14.  
  15.     std::cin >> A;
  16.     char p = A(10, 0);
  17.     std::cout << p;
  18.  
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement