欧美1区2区3区激情无套,两个女人互添下身视频在线观看,久久av无码精品人妻系列,久久精品噜噜噜成人,末发育娇小性色xxxx
在不使用第三個變量的情況下交換兩個int類型變量的值
輸入描述:
a變量和b變量的值
輸出描述:
交換后a變量和b變量的值,中間用空格隔開
示例1
輸入
1 2
輸出
2 1
加載中...
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); //write your code here....... System.out.println(a+" "+b); } }
1 2
2 1