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

1898 Views

See similar Computing A Level tutors

Related Computing A Level answers

All answers ▸

What is 'Virtual Memory', and how does it work?


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


Show how the decimal number -183 would be represented as an 8-bit two's complement arithmetic


Express the number 208 as a) an 8-bit binary number b) an octal string c) a hexadecimal string


We're here to help

contact us iconContact usWhatsapp logoMessage us on Whatsapptelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2025

Terms & Conditions|Privacy Policy
Cookie Preferences