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
相關文章
相關標籤/搜索