Problem J: 交换两个变量的值(变量交换)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:35
Solved:19
Description
交换两个变量的值:输入两个正整数a和b,编程交换这两个变量的值。
Input
输入两个整数(两个整数的数据范围是-2147483648 到 2147483647)
Output
输出交换后的两个整数
Sample Input Copy
2100000 500000
Sample Output Copy
500000 2100000
HINT
常见数据类型的取值范围:
在Dev C++中:
类型 位 范围
int 4 个字节 -2147483648 到 2147483647
long long 8 个字节 -9,223,372,036,854,775,808 到 9,223,372,036,854,775,807
在Dev C++中:
类型 位 范围
int 4 个字节 -2147483648 到 2147483647
long long 8 个字节 -9,223,372,036,854,775,808 到 9,223,372,036,854,775,807