🌈 搜索
📅  最后修改于: 2022-03-11 14:52:36.706000             🧑  作者: Mango
int a = 5; int b = 6; int temp = a; a = b; b = temp; // now a is 6 and b is 5.