Q:

Write C++ program to count total number of negative elements in array

0

Write C++ program to count total number of negative elements in array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.

#include <iostream>
#define MAX_SIZE 100 //Maximum size of the array
using namespace std;
 
int main()
{
   int arr[100]; //Declaring size of an array as 100
   int i, num, count=0;
 
    //Reads size and elements of array
 
    cout<<"Enter size of the array : ";
    cin>>num;
 
    cout<<"Enter elements in array : ";
    for(i=0; i<num; i++)
    {
        cin>>arr[i];
    }
 
    //Counts total number of negative elements
    for(i=0; i<num; i++)
    {
        if(arr[i]<0)
        {
            count++; //couting negative elements
        }
    }
    cout<<"Total number of negative elements: "<<count;
 
    return 0;
}

Result:

Enter size of the array : 5

Enter elements in array : 10

-20

-30

40

50

Total number of negative elements: 2

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write C++ program to read and print elements of ar... >>
<< Write C++ program to print all negative elements i...