Untitled

Anonymous
plain_text
11/06/2022 12:12 PM
236 B
17
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...