赞
踩
- package day06;
-
- public class Demo {
-
- public static void method(int a, int b) {
- a = a * 10;
- b = b * 20;
- System.out.println("a=" + a);
- System.out.println("b=" + b);
- System.exit(1);// 结束程序
- }
-
- public static void main(String[] args) {
- int a = 10;
- int b = 10;
- method(a, b);// 需要在method方法被调用之后,仅打印出a=100,b=200,请写出method方法的代码
- System.out.println("a=" + a);
- System.out.println("b=" + b);
- }
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。