标题以下:
public class Test {
public static void main(String[] args) {
int a = 10;
int b = 10;
// 须要在method办法被调用后,仅打印出a=100,b=200,请写出method办法的代码
method(a, b);
System.out.println("a=" + a);
System.out.println("b=" + b);
}
// 代码编写处
}public class Test {
public static void