на языке C++:
#include
#include
#include
using namespace std;
int main () {
int result = 1;
int c;
string answer = "";
while (1) {
cout << "Введите число";</p>
cin >> c;
if (c == 999)
if (result == 1)
{cout << "Не введены отрицательные числа"<< endl; return 0;}</p>
else {cout << "результат: " << result << endl; return 0;}</p>
else if (c<0)result *= c;</p>
cout << "продолжить? <YES> | ";
сin.getline(answer, sizeof(string));
if (strcmp(answer, "YES")==0) continue;
else return 1;
}
}