✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Результат компіляції програмного коду:
public class One {
void meth (int i, int j){
i = i * 2;
j = j / 2;
}
}
public class OneMain {
public static void main(String[] args) {
One one = new One();
int a = 2, b = 4;
System.out.println(a + " " + b);
one.meth(a, b);
System.out.println(a + " " + b);
}
}