Reading a program with a function
Задача
Given a fragment of the program:
...
static float Avg(int a, int b)
{
return (a+b)/2;
}
static void Main()
{
...
int x = 2;
int y = 5;
float sr = Avg(x, 2*y+8);
...
}
What will be the value of the variable sr
after the execution of the program fragment.
Выберите правильный ответ, либо введите его в поле ввода
Комментарий учителя