当前位置:首页 > 行业动态 > 正文

c语言怎么统计

在C语言中,我们通常使用循环和条件语句来统计,以下是一个简单的例子,我们将使用一个整数数组,并计算其中正数、负数和零的数量。

1. 定义变量

我们需要定义一些变量来存储我们的统计数据,我们可以定义三个整数变量:positiveCount,negativeCount和zeroCount。

int positiveCount = 0;
int negativeCount = 0;
int zeroCount = 0;

2. 遍历数组

我们需要遍历我们的数组,对于数组中的每个元素,我们需要检查它是正数、负数还是零,并相应地增加我们的计数器。

for(int i = 0; i < arraySize; i++) {
    if(array[i] > 0) {
        positiveCount++;
    } else if(array[i] < 0) {
        negativeCount++;
    } else {
        zeroCount++;
    }
}

3. 输出结果

我们可以打印出我们的统计结果。

printf("Positive numbers: %d
", positiveCount);
printf("Negative numbers: %d
", negativeCount);
printf("Zeroes: %d
", zeroCount);

完整代码

以下是完整的代码示例:

#include <stdio.h>
int main() {
    int array[] = {1, 2, 3, 0, 5, 6, 0, 8, 9};
    int arraySize = sizeof(array) / sizeof(array[0]);
    int positiveCount = 0;
    int negativeCount = 0;
    int zeroCount = 0;
    for(int i = 0; i < arraySize; i++) {
        if(array[i] > 0) {
            positiveCount++;
        } else if(array[i] < 0) {
            negativeCount++;
        } else {
            zeroCount++;
        }
    }
    printf("Positive numbers: %d
", positiveCount);
    printf("Negative numbers: %d
", negativeCount);
    printf("Zeroes: %d
", zeroCount);
    return 0;
}

这段代码将输出:

Positive numbers: 4
Negative numbers: 3
Zeroes: 2
0