gpt4 book ai didi

c - 如何使用C for循环编写一个系列?

转载 作者:行者123 更新时间:2023-11-30 18:11:35 24 4
gpt4 key购买 nike

我在为一系列代码编写代码时遇到了麻烦,我相信这是我的 if 语句的问题,但我被难住了。这个系列应该是

((-1)^(n+1))*n^2

但我一直得到错误的输出。这是我的代码:

#include <stdio.h>

int n,t=1,nextTerm,sum=0,i;

int main() {
printf("Enter an integer number:");
scanf("%d",&n);
for(i=1;i<=n;i++) {
if (t%2 == 0) {
nextTerm = 1;
}
else {
nextTerm = -1;
}
t=nextTerm*(t*t);
sum=sum+t;
}
printf("The value of the series is: %d\n",sum);
return (0);
}

最佳答案

您必须检查 i+1 而不是 i 并将 t*t 替换为 i*i 。您不需要任何额外的变量,例如 t

#include <stdio.h>

int main()
{
int n,nextTerm,sum=0,i;
printf("Enter an integer number:");
scanf("%d",&n);
for(i=1;i<=n;i++) {
if ((i+1)%2 == 0)
nextTerm = 1;
else
nextTerm = -1;
sum=sum+(nextTerm*i*i);
}
printf("The value of the series is: %d\n",sum);
return 0;
}

系列是这样的:

1, -4, 9, -16, ...

输出:

Enter an integer number:4

The value of the series is: -10

关于c - 如何使用C for循环编写一个系列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46469391/

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