✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <iostream.h>
int main ()
{
int ic;
cout << "Введіть будь-яку десяткову цифру:";
cin >> ic;
switch (ic)
{
case 0: case 1: cout << "один";
case 2: case 3: cout << "три";
case 4: case 5: cout << "п'ять";
case 6: case 7: cout << "сім";
case 8: case 9: cout << "дев'ять"; break;
default: cout << "ERROR !!!";
}
return 1;
}
(C++)