27.7k views
2 votes
Can you help me in this question

Can you help me in this question-example-1
User Raphael K
by
3.8k points

1 Answer

5 votes

Answer:

count = arry[0];

for (i = 0; i < n; i++)

{

if (count>5);

{

count;

}

}

cout << "Total Count of the numbers greater than or equal to 5 : " <<count ;

Step-by-step explanation:

count = arry[0];

for (i = 0; i < n; i++)

{

if (count>5);

{

count;

}

}

cout << "Total Count of the numbers greater than or equal to 5 : " <<count ;

User Umar Arshad
by
3.0k points