Advertisement
Qpel

masyvai 3 uzd

Mar 20th, 2017
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.69 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. const int n = 4;
  6.  
  7. int main()
  8. {
  9.  
  10. string M[n];
  11. int A[n][n] = {10,5,7,6,
  12.                 8,6,4,9,
  13.                 2,11,9,3,
  14.                 8,15,12,17};
  15.  
  16. /*
  17.     for(int i = 0; i < n; i++){
  18.             //cout << endl;
  19.         for(int j = 0; j < n; j++){
  20.             //cout << A[i][j];
  21.  
  22.         }
  23.     }*/
  24.  
  25.     for(int i = 0; i < 4; i++){
  26.         for (int j = 0; j < 4; j++){
  27.             if(i==j){
  28.                 //cout << A[i][j] << " ";
  29.                 if(A[i][j] > 8) M[i] = "D";
  30.                 else M[i] = "M";
  31.  
  32.             }
  33.  
  34.         }
  35.  
  36.  
  37.     }
  38.  
  39.     for(int i = 0; i < n; i++){
  40.     cout <<  M[i];
  41.     }
  42.  
  43. return 0;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement