โ Back to Functions/Methods
Question 285
Function: Nth Triangular Number
Function: Nth Triangular Number
Write a functiontriangular(int n)that returns the nth triangular number using the formulan * (n + 1) / 2. Call it with7and print the result: 28 Print with%d.
Expected Output:
28
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.