adsa
unknown
c_cpp
2 years ago
221 B
7
Indexable
#include <iostream>
using namespace std;
int main()
{
int a;
int count = 0;
for (int i = 0; i < 5; i++)
{
for (int c = 0; c < 5; c++)
{
cin >> a;
if (a > 0) count++;
}
}
cout << count;
}Editor is loading...