gpt4 book ai didi

c - a 和 b 之间所有数字的和

转载 作者:行者123 更新时间:2023-11-30 21:39:22 25 4
gpt4 key购买 nike

我需要创建一个程序,给出 a 常数之间的所有数字的总和。和b由用户给出。 b需要大于a .

#include <stdio.h>

void main()
{
int index, begno, endno, sum = 0;
printf("Program for sum of all numbers in the given range\n");

printf("Enter Beg. No.: ");
scanf("%d", &begno);
printf("Enter End. No.: ");
scanf("%d", &endno);
index = begno;

for(; index <= endno; index ++)
sum = sum + index;

printf("The sum of even numbers between %d and %d is: %d", begno, endno, sum);
}

最佳答案

给出的代码看起来不错,但如果您想要不包括最后一个数字的总和,通常情况下您应该像这样更改 for 循环

for(; index < endno; index ++)

关于c - a 和 b 之间所有数字的和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34624879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com