已有变量定义和函数调用语句int a,b; b=sum(a);函数sum用来求1+2+3+…+n,请编写sum函数。C语言
时间: 2024-05-05 19:21:15 浏览: 70
函数的首部-C语言学习PPT
可以使用循环语句(例如for循环)来实现sum函数,具体代码如下:
```
int sum(int n) {
int result = 0;
for (int i = 1; i <= n; i++) {
result += i;
}
return result;
}
```
在主函数中调用sum函数的语句可以为:
```
int a, b;
a = 10; // 假设a为10
b = sum(a);
```
其中,变量a的值为10,sum函数的返回值会被赋值给变量b。
阅读全文