Вот, я сделал
while (для программного продукта 2010 года). В подобный вид можете с
for, а то чего-то....торможу(
Код:
#include <iostream>
using namespace std;
int main ()
{
int kol=0, x, i=1;
const int n=10;
while (i<=n)
{
cout<<"enter number"; cin>>x;
if (x!=0)
{
kol++;
}
i++;
}
cout<<"Result "<<kol<<endl;
system("pause");
return 0;
}