- class exctools
- {
- public static void exc(int a,int b)
- {
- int temp;
- temp=a;
- a=b;
- b=temp;
- }
- }
- class testexc
- {
- public static void main(String[] args)
- {
- int a=3,b=7;
- System.out.println("a="+a+"b="+b);
- exctools.exc(a,b);
- System.out.println("a="+a+"b="+b);
- }
- }
复制代码 |
|