第一次上机练习-马文龙

package com.xuexiao;

public class Text1 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		int a = 1,b = 10;

	    int temp = a;

	        a = b;

		b = temp;
		System.out.println(a+" "+b);

		
	}

}

  

posted @ 2020-03-19 11:12  只是马文龙  阅读(56)  评论(0)    收藏  举报