交换两个变量的值,由终端输入两个整数给变量x,y,然后交换x和y的值后,输出x和y.
从键盘输入两个整数变量x和y。中间有1个空格。
交换x、y的值,将x和y输出,中间有1个空格。
4 6
6 4
---------------------------------------------------------------------------------------------------------------------------------
- import java.util.Scanner;
- public class Main{
- public static void main(String[] args)
- {
- Scanner sc=new Scanner(System.in);
- int x=sc.nextInt();
- int y=sc.nextInt();
- int temp=0;
- temp=x;
- x=y;
- y=temp;
- System.out.println(x+" "+y);
- }
- }