✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int i, зміна = 3;
string d;
if ((i = int.Parse (System.Console.ReadLine ())) <6)
зміна = int.Parse (System.Console.ReadLine ());
switch (i)
{Case 6: case 7: d = "Вихідний"; goto case 8;
default: d = "Працюю";
switch (зміна)
{
case 1:
System.Console.WriteLine (d + "в першу зміну"); break;
case 2:
System.Console.WriteLine (d + "у другу зміну"); break;
default: System.Console.WriteLine ( "Не працюю"); break;
}
break;
case 8: System.Console.WriteLine ( "Відпочиваю"); return;
}
Вкажіть результат виведення, якщо після успішного запуску програми на компіляцію і виконання користувач ввів з клавіатури 4, а потім 0.
(**CharpBase**)