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

1992 Views

See similar Computing A Level tutors

Related Computing A Level answers

All answers ▸

What are the main differences between different loops when it comes to coding ?


Explain indexed addressing including the benefits when traversing certain data structures (4 Marks)


Why would you use Assembly Language instead of a normal programming language?


What is Https?


We're here to help

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

© MyTutorWeb Ltd 2013–2025

Terms & Conditions|Privacy Policy
Cookie Preferences