c语言怎么统计

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

c语言怎么统计
(图片来源网络,侵删)

1. 定义变量

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

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

原创文章,作者:酷盾叔,如若转载,请注明出处:https://www.kdun.com/ask/392571.html

本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。

(0)
酷盾叔订阅
上一篇 2024-03-27 01:31
下一篇 2024-03-27 01:32

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

产品购买 QQ咨询 微信咨询 SEO优化
分享本页
返回顶部
云产品限时秒杀。精选云产品高防服务器,20M大带宽限量抢购 >>点击进入