CJCoding With Joseph

Function: Nth Triangular Number

Write a function triangular(int n) that returns the nth triangular number using the formula n * (n + 1) / 2. Call it with 7 and 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.