Write a Pseudocode function that returns the factorial of an integer input.

--------------------------------------INPUT XY = 1
WHILE ( X > 1) Y = X * Y X = X - 1
OUTPUT Y-------------------------------It is also possible to complete this task using recursion
DEF fact(n):  IF (n > 1):    RETURN (n*fact(n-1))  ELSE    RETURN 1

Answered by Computing tutor

2142 Views

See similar Computing A Level tutors

Related Computing A Level answers

All answers ▸

Project Euler Question 3: What is the largest prime factor of the number 600851475143?


What is the difference between interpreted and intermediate code?


What is the range of denary numbers that can be represented using 8-bit two’s complement binary integers?


Describe the difference between passing parameters into a function by reference and by value? Indicating how this may lead to unexpected outputs.


We're here to help

contact us iconContact ustelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

MyTutor is part of the IXL family of brands:

© 2025 by IXL Learning