
Given ‘a’ the First term, ‘d’ the common difference and ‘n’ for the number of terms in a series. The task is to find the nth term of the series.
So, before discussing how to write a program for the problem first we should know what is Arithmetic Progression.
Arithmetic progression or arithmetic sequence is a sequence of number where the difference between the two consecutive terms is same.
Like we have first term i.e a =5, difference 1 and nth term we want to find should be 3. So, the series would be: 5, 6, 7 so the output must be 7.
So, we can say that Arithmetic Progression for nth term will be like −
AP1 = a1 AP2 = a1 + (2-1) * d AP3 = a1 + (3-1) * d ..<p>APn = a1 + (n-1) *</p>
So the formula will be AP = a + (n-1) * d.
Input: a=2, d=1, n=5 Output: 6 Explanation: The series will be: 2, 3, 4, 5, 6 nth term will be 6 Input: a=7, d=2, n=3 Output: 11
Approach we will be using to solve the given problem −
Start
Step 1 -> In function int nth_ap(int a, int d, int n)
Return (a + (n - 1) * d)
Step 2 -> int main()
Declare and initialize the inputs a=2, d=1, n=5
Print The result obtained from calling the function nth_ap(a,d,n)
Stop#include <stdio.h>
int nth_ap(int a, int d, int n) {
// using formula to find the
// Nth term t(n) = a(1) + (n-1)*d
return (a + (n - 1) * d);
}
//main function
int main() {
// starting number
int a = 2;
// Common difference
int d = 1;
// N th term to be find
int n = 5;
printf("The %dth term of AP :%d</p><p>", n, nth_ap(a,d,n));
return 0;
}The 5th term of the series is: 6
以上就是C程序计算等差数列的第N项的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号