adsa

Anonymous
c_cpp
11/05/2023 8:43 AM
296 B
15
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...