Advertisement
venik2405

Untitled

Sep 23rd, 2020
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int n = 0;
  6.     int comp=0;
  7.     cout << "Данная программа позволяет найти P=2*4*6*8..*2*n " << endl;
  8.     setlocale(LC_ALL, "Russian");
  9.     cout << "Введите чило n " << endl;
  10.     cin >> n;
  11.     if ((n < 1) || (n > 9)) {
  12.         cout << "Введите чило в диапозоне от 1 до 9";
  13.     }
  14.     for (int i = 2; i < (2 * n + 1); i++) {
  15.         if (i % 2 == 0) {
  16.             comp = comp * i;
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement