gpt4 book ai didi

计算整数的平方和

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

我对教授给我们的家庭作业问题感到有点困惑。问题要求编写一个“计算整数平方和”的程序,我有点困惑它是什么确切地说。该问题来自 C Primer Plus 第六版(问题 5 和 6,如果有人有这本书)。

我写了以下内容,其中一部分来自另一个问题。

int main()
{

int count;
int sum;
int howFar;

count = 0;
sum = 0;


printf("Enter a number: ");

scanf("%d", &howFar);

while (count++ < howFar) {
sum = sum + count;
//is this what it means????
sum = sum * sum;
}

printf("sum = %d\n", sum);

return 0;
}

最佳答案

3 个数字的整数平方和意味着 1*1 + 2*2 + 3*3 = 14代码可能对你有帮助

#include<stdio.h>

int main(){
int count,sum=0,temp;
printf("Enter the total number you e=want to sum up");
scanf("%d",&count);//variable to hold count of total number you want to sum up
while(count){
count--; //decrement count by one
printf("Enter number for square sum");
scanf("%d",&temp);//variable to hold coming number for sum
sum = sum + (temp*temp); //square and sum
}
printf("sum = %d\n",sum);
return 0;
}

关于计算整数的平方和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42743207/

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