logo

Crowdly

Browser

Add to Chrome

Проаналізуйте наведений код. static void Main () {  int a = 0; try {a = De...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Проаналізуйте наведений код.

static void Main () {

 int a = 0;

try {a = Devide (a); }

catch (System.SystemException) { System.Console.Write ( "Помилка в даних!"); }

finally { System.Console.Write ( "Програму завершено!"); }

 System.Console.Write ( "a =" + a);

 }

 static int Devide (int b) { if (b == 0) throw new System.FormatException(); else b = 100 / b; return b;

Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання: C# oop_class

0%
0%
0%
0%
More questions like this

Want instant access to all verified answers on moodle.chnu.edu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome