Vlad5080

FILES №57

Jan 14th, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     setlocale(0, "rus");
  7.  
  8.     int a, b,
  9.         c, d;
  10.     cout << "Введите элементы матрицы второго порядка\n -> ";
  11.     cin >> a;
  12.     cout << " ->";
  13.     cin >> b;
  14.     cout << " ->";
  15.     cin >> c;
  16.     cout << " ->";
  17.     cin >> d;
  18.  
  19.     cout << "\n Результат определителя \n -> " << a * d - c * b << endl;
  20.  
  21.  
  22.     system("pause");
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment