用C++语言编写一个函数,输出数组中非零元素的个数
时间: 2023-05-19 22:07:02 浏览: 191
可以使用以下代码实现:
```c
int countNonZero(int arr[], int n) {
int count = 0;
for (int i = 0; i < n; i++) {
if (arr[i] != 0) {
count++;
}
}
return count;
}
```
其中,arr[] 表示输入的数组,n 表示数组的长度。该函数会遍历整个数组,每当遇到一个非零元素时,计数器 count 就会加一。最终返回 count 的值,即非零元素的个数。
相关问题
用C++语言编写一个函数,输出二维数组中非零元素的个数
好的,以下是用C语言编写的函数,可以输出二维数组中非零元素的个数:
```c
int countNonZero(int arr[][N], int row, int col) {
int count = 0;
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
if (arr[i][j] != 0) {
count++;
}
}
}
return count;
}
```
其中,`arr`是一个二维数组,`row`和`col`分别表示数组的行数和列数。函数会遍历整个数组,统计非零元素的个数,并返回结果。
希望这个函数能够帮到你!
编写一个函数,统计一条英文句子中非字母的个数,在main函数中实现输入输出,并测试此函数
好的,我来帮你写一个统计英文句子中非字母个数的函数,函数原型如下:
```c++
int countNonLetters(string sentence);
```
其中,`sentence` 是要统计的英文句子。
函数实现如下:
```c++
#include <iostream>
#include <string>
using namespace std;
int countNonLetters(string sentence) {
int count = 0;
for (int i = 0; i < sentence.length(); i++) {
if (!isalpha(sentence[i])) {
count++;
}
}
return count;
}
int main() {
string sentence;
cout << "请输入一句英文句子:";
getline(cin, sentence);
int count = countNonLetters(sentence);
cout << "非字母个数:" << count << endl;
return 0;
}
```
在此程序中,我们使用 `getline()` 函数来获取用户输入的英文句子,使用 `countNonLetters()` 函数来统计非字母的个数,并输出结果。
你可以将此程序保存为一个 `.cpp` 文件,然后使用 C++ 编译器编译运行。
阅读全文