Answered step by step
Verified Expert Solution
Question
1 Approved Answer
nSnookerBall (nRow) At the beginning of a game of snooker, the red balls are placed in a triangular pattern, with 1 ball in the first
nSnookerBall (nRow) At the beginning of a game of snooker, the red balls are placed in a triangular pattern, with 1 ball in the first row and 1 more ball in each subsequent row (see the snooker setup here). This is also the setup at the beginning of a game of eight-ball pool (image here). For example, the first 3 rows contain 6 balls (1+2+3) and the first 5 rows contain 15 balls (1+2+3+4+5) This is related to a concept in computer science and mathematics called triangular numbers, which you should research here. Look for a formula for computing a triangular number 1. .n directly (that is, without adding them explicitly using n-1 additions, which is slower and would require iteration with a for loop, a future topic. Write the function nsnookerBall (nRow) that takes a nonnegative integer nRow, representing the number of rows of balls, and returns an integer, the number of balls in the associated rack. Notice that we are generalizing from a rack of 5 rows to a rack with any number of rows Sample Input:Expected Output: 15 0 6 nRow- 0 Row 3
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started