91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c語言等差數列求和程序怎么實現

小樊
87
2024-07-26 04:08:10
欄目: 編程語言

下面是一個使用C語言實現等差數列求和的程序示例:

#include <stdio.h>

int main() {
    int firstTerm, commonDifference, n, sum = 0;

    // 輸入等差數列的首項、公差和項數
    printf("Enter the first term of the arithmetic sequence: ");
    scanf("%d", &firstTerm);
    printf("Enter the common difference of the arithmetic sequence: ");
    scanf("%d", &commonDifference);
    printf("Enter the number of terms in the arithmetic sequence: ");
    scanf("%d", &n);

    // 計算等差數列的和
    sum = n * (2 * firstTerm + (n - 1) * commonDifference) / 2;

    // 輸出結果
    printf("The sum of the arithmetic sequence is: %d\n", sum);

    return 0;
}

通過輸入等差數列的首項、公差和項數,該程序將計算出等差數列的和并輸出結果。

0
漾濞| 尼勒克县| 罗田县| 宁都县| 莱州市| 襄垣县| 衡南县| 赤峰市| 南漳县| 滦平县| 增城市| 大方县| 游戏| 阿拉善右旗| 马关县| 通河县| 旌德县| 景洪市| 乌审旗| 九龙城区| 浮山县| 故城县| 玛纳斯县| 广西| 岑溪市| 资源县| 南昌县| 铅山县| 红桥区| 富民县| 将乐县| 乌恰县| 邓州市| 潞城市| 钟祥市| 巨鹿县| 五华县| 岳西县| 鹤山市| 舟曲县| 葫芦岛市|