Python基础语法-Python,Java,C++变量互换值的区别

两个变量交换数值 C++ #include"iostream" using namespace std; int main(void){ int a = 1; int b = 2; int temp; temp = a; a = b; b = temp; cout<<a<<endl; cout<<b<<endl; }   Java public class Test { p
相关文章
相关标签/搜索