C++ 函式參數指標寫法void swap(int a, int b) // call by value{ int tmp = a; a = b; b = tmp;} void main(void)
確定! 回上一頁