I decided to make a quick factorial calculator to add to my collection of calculators on Scratch. This really only took 10 minutes. Factorials are definitely not hard to program. Enter a number, and it will find its factorial. Enter a whole number to see what its factorial is. Unfortunately, any number above 170 will result in it coming out as infinity on scratch. That just means that the number is too big for Scratch’s programming to handle. I made it so the cat says “too big for scratch to handle” instead of infinity.
Factorials are an operation represented by an exclamation point. A factorial is when a number is multiplied by all whole numbers lower than it until 1. For example: 100!=100 x 99 x 98 x 97 and so on. -All coding by me