19 lines
363 B
C
19 lines
363 B
C
|
|
||
|
// 使用全局变量计算100以内累加和。
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int total = 0; // 全局变量在整个
|
||
|
|
||
|
void add(int n)
|
||
|
{
|
||
|
total += n; // 将局部变量 n 的值累加到 total 全局变量
|
||
|
}
|
||
|
|
||
|
int main(int argc, char const *argv[])
|
||
|
{
|
||
|
for (int i = 1; i <= 100; i++)
|
||
|
add(i);
|
||
|
|
||
|
printf("100 以内的整数和: %d\n", total);
|
||
|
return 0;
|
||
|
}
|