✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
static void Main ()
{
int a = 100;
try {a = Devide (a); }
finally { System.Console.Write ( "Програму завершено!"); }
System.Console.WriteLine ( "a =" + a);
}
static int Devide (int b)
{Return 100 / b; }
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
C# oop_class