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