Advertisement
nikitaxe132

Untitled

Sep 24th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.     using namespace std;
  5.     int numb;
  6.     numb = 1;
  7.     cout << "Введите n";
  8.     int n;
  9.     cin >> n;
  10.     cout << "Введите m";
  11.     int m;
  12.     cin >> m;
  13.     m = m - 1;
  14.     numb = n;
  15.     for(int i = 1; i <= m; i++) {
  16.         numb = numb * (n - 1);
  17.     }
  18.     cout << "Количество размещений = " << numb;
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement