Есть ответ 👍

Создайте web-страницу, при открытии которой в браузере будет отображаться ваши имя и фамилия

231
476
Посмотреть ответы 1

Ответы на вопрос:

inzi05
4,7(44 оценок)

#include <iostream>

#include <vector>

#include <map>

#include <cmath>

#include <queue>

#include <set>

#include <iomanip>

#include <map>

using namespace std;

//#define int long long

signed main() {

   ios_base::sync_with_stdio(0);

   cin.tie(0);

   cout.tie(0);

   int n;

   cin >> n;

   int mx = -INT_MAX,cnt=0,ans=1;

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

   {

       int k;

       cin >> k;

       if(i < n/2)

           mx = max(mx,k);

       if(k < 0)

       {

           ans *= k;

           cnt++;

       }

   }

   cout << "maximal element in first half: " << mx << "\n";

   cout << "product of negative numbers: " << ans << "\n";

   cout << "amount of negative numbers: " << cnt;

}

Популярно: Информатика