Untitled

 avatar
unknown
plain_text
3 years ago
176 B
4
Indexable
#include <iostream>

using namespace std;
int main()
{
    setlocale(LC_ALL, "Russian");
    int a,c=-1;
	do {
		cin >> a;
		c++;
	} while (a != 0);

	cout << c;
}
Editor is loading...