#include <iostream>
#include <clocale>
int main()
{
std::setlocale(LC_ALL, "Russian");
int
N,
sum = 0,
count = 0,
tmp;
std::cin >> N;
for (size_t i = 0; i < N; i++)
std::cin >> tmp;
if (tmp > 0)
sum += tmp;
else count++;
}
std::cout << "Сумма положительных = " << sum << std::endl;
std::cout << "Количество отрицательных = " << count << std::endl;
std::system("PAUSE >> void");
return 0;
#include <iostream>
#include <clocale>
int main()
{
std::setlocale(LC_ALL, "Russian");
int
N,
sum = 0,
count = 0,
tmp;
std::cin >> N;
for (size_t i = 0; i < N; i++)
{
std::cin >> tmp;
if (tmp > 0)
sum += tmp;
else count++;
}
std::cout << "Сумма положительных = " << sum << std::endl;
std::cout << "Количество отрицательных = " << count << std::endl;
std::system("PAUSE >> void");
return 0;
}