Пример #1
0
int main(void)
{
	int n;
	
	printf("Enter a number: ");
	scanf("%d", &n);
	
	printf("%d! = %d\n", n, fact_iterative(n));
	
	system("pause");
}
Пример #2
0
long int bynomial_factor (int n, int k) { // Require Fact

	long int result = 1; // Result To Return
	int limit; // n-k+1
	long int k_fact; // K Factorial
	int t; // For Loop Variable

	// Parsing Arguments
	if ( k < 0 || n < k || k == 0) {

		result = -1; return result;

	}

	// n - k + 1
	limit = n - k + 1;
	
	// Factorial And Productorial Calculation
	#pragma omp parallel sections
	{
		// K Factorial
		#pragma omp section
		{ k_fact = fact_iterative (k); }

		// Product Of All Terms From n To The limit
		#pragma omp section
		{ 
		
			for (t = n; t >= limit; t--) {

				result *= t;

			}
			
		}
		
	}

	result /= k_fact;

	// Return Result
	return result;

}