Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1 2 . The triangular numbers are as follows: 1 = 1 3 = 1 + 2 6 = 1 + 2 + 3 1

12. The triangular numbers are as follows:
1=1
3=1+2
6=1+2+3
10=1+2+3+4
15=1+2+3+4+5
21=1+2+3+4+5+6
etc.
The series begins with 1(the first triangular number). To calculate the nth triangular
number, n is added to the previous triangular number. For example, the fourth triangular
number is calculated by adding 4 to the third triangular number (which is 6), i.e.10=(1
+2+3)+4.
Write a recursive function (pseudocode) in that will calculate the nth triangular number.
Note: will not receive any credit for a non-recursive solution.
For example, the following statements would lead to the underlined output:
Example 1:
print ( triNum(1));
1
Example 2:
print ( triNum(2));
3
Example 3:
print ( triNum(5));
15
Note: you may assume the parameter will be positive no error checking of inputs is
required

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

A 300N F 30% d 2 m Answered: 1 week ago

Answered: 1 week ago