Page not loading? Try clicking here.
Placeholder

#234

Function 3 - Formative Assessment 4 1s - MB

Problems

There is a sequence where the first number is 1, the second number is 2, and from the third number onward, each number is the remainder when the product of the previous two numbers is divided by 100. Receive a natural number N not greater than 100 as input, and write a program that uses a recursive function to print the N-th number in this sequence.


Example

8
92

Source

자기주도C언어프로그래밍

You must sign in to write code.