Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The triangular numbers are as follows: 136101521etc.=1==1+2=1+2+3=1+2+3+4=1+2+3+4+5 The series begins with 1 (the first triangular number). To calculate the nth triangular number, n is added

image text in transcribed

The triangular numbers are as follows: 136101521etc.=1==1+2=1+2+3=1+2+3+4=1+2+3+4+5 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 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

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

Recommended Textbook for

Expert Performance Indexing In SQL Server

Authors: Jason Strate, Grant Fritchey

2nd Edition

1484211189, 9781484211182

More Books

Students also viewed these Databases questions