#include <iostream>
using namespace std;
int main()
{
int i,n,f=1;
cin >> n;
if (n > 0 && n <= 15)
for (i=1;i<=n;i++)
f *= i;
}
cout << f;
else if (n == 0)
cout << 0;
else
cout << "n вне диапазона чисел";
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int main()
{
int i,n,f=1;
cin >> n;
if (n > 0 && n <= 15)
{
for (i=1;i<=n;i++)
{
f *= i;
}
cout << f;
}
else if (n == 0)
{
cout << 0;
}
else
{
cout << "n вне диапазона чисел";
}
}