Untitled

Anonymous
plain_text
03/02/2023 3:33 PM
652 B
12
Indexable
// ConsoleApplication38.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <string>
#include <iostream>
using namespace std;
int fac(int a) {
	int i,b = 1;
	for (i = 1; i < a+1; i++)
	{
		b *= i;
	}
	return b;
};

int main(){
	setlocale(LC_ALL, "Russian");
	cout << "Введите число\n";
	int a;
	cin >> a;
	cout << fac(a);

}

Editor is loading...