Code c++ (cin cout) условие на фото


Code c++ (cin cout) условие на фото

дашкатопикепи дашкатопикепи    3   01.04.2021 15:49    0

Ответы
Marishkakey Marishkakey  01.05.2021 15:53

Объяснение:

#include <iostream>

using namespace std;

int main()

{

int size, positiveCount = 0, negativeCount = 0;

cin >> size;

int* arr = new int[size];

for (int i = 0; i < size; i++)

{

 cin >> arr[i];

 if (arr[i] > 0) positiveCount++;

 else if (arr[i] < 0) negativeCount++;

}

cout << ((negativeCount == 0) ? 0 : positiveCount / negativeCount) << endl;

}

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика