✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
static double Func (int a, int b) {return a * b; }
static double Func (double a, double b) {return a - b; }
static double Func (long a, float b) {return a + b; }
static double Func (short a, int b) {return b% a; }
static void Main()
{
int a = 2;
System.Console.Write(Func (a, 3.5f));
}
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
(**CharpBase**)