在C语言中,计数通常用于统计某个特定值出现的次数,以下是一个简单的例子,我们将使用一个整数数组来计数其中某个特定值的出现次数。
(图片来源网络,侵删)
1、我们需要定义一个整数数组和一个计数器变量,计数器变量将用于存储特定值的出现次数。
#include <stdio.h> int main() { int arr[] = {1, 2, 3, 4, 5, 2, 2, 3, 4, 2}; // 定义一个整数数组 int count = 0; // 定义一个计数器变量 int target = 2; // 定义我们要计数的目标值 int i; }
2、我们遍历整个数组,每次遇到目标值时,我们就将计数器加一。
for (i = 0; i < sizeof(arr) / sizeof(arr[0]); i++) { if (arr[i] == target) { count++; } }
3、我们打印出目标值在数组中出现的次数。
printf("The number %d appears %d times in the array.n", target, count);
完整的代码如下:
#include <stdio.h> int main() { int arr[] = {1, 2, 3, 4, 5, 2, 2, 3, 4, 2}; // 定义一个整数数组 int count = 0; // 定义一个计数器变量 int target = 2; // 定义我们要计数的目标值 int i; for (i = 0; i < sizeof(arr) / sizeof(arr[0]); i++) { if (arr[i] == target) { count++; } } printf("The number %d appears %d times in the array.n", target, count); return 0; }
这个程序将输出 "The number 2 appears 4 times in the array.",因为数字2在数组中出现了4次。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/428691.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复