Advertisement
35657

Untitled

Mar 2nd, 2024
710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2. #include <time.h>   // для time()
  3. #include <stdlib.h> // для rand()
  4.  
  5. using namespace std;
  6.  
  7.  
  8. int fact(int number) {
  9.     int result = 1;
  10.     for (int i = 1; i <= number; i++) {
  11.         result *= i;
  12.     }
  13.     return result;
  14. }
  15.  
  16. int main() {
  17.  
  18.     setlocale(LC_ALL, "ru");
  19.  
  20.     int n;
  21.     cout << "Введите число: ";
  22.     cin >> n;
  23.     cout << "Факториал числа: " << fact(n) << endl;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement