Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Practicing For Loop | Loops
C# Basics
course content

Contenido del Curso

C# Basics

Practicing For Loop

A factorial of a number is the product of all the numbers from 1 up till that number. For-example the factorial of 5 is the product of all numbers from 1 to 5 (1 x 2 x 3 x 4 x 5) which gives 120.

Did You Know?

The mathematical notation for a factorial is x! where x is any integer. Hence 3! is 6, 4! is 24, 5! is 120 and so on. The factorial of 0 is 1 by definition therefore 0! is 1.

cs

main

  1. Initialize the loop variable i with a value of 2 and continue the loop till i is equal to x, so the loop condition will be i <= x.
cs

main

¿Todo estuvo claro?

Sección 4. Capítulo 2
We're sorry to hear that something went wrong. What happened?
some-alt