Find Nth-term of an arithmetic progression
Given a first element a and common difference d of an arithmetic progression. Write a program to find the nth term in that progression. Example: a = 1, d = 2, n = 5 output: 9 a = 2, d = 5, n = 4 output: 17 Solution: Formula for finding nth term in an … Read more Find Nth-term of an arithmetic progression