#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ void show1(int & n); void show2(int * n); void show3(int *& n); void show4(int & n); int main(int argc, char** argv) { //1.學習參考的用途:很多API函數的傳遞參數,都是用參考變數傳遞的 // 例如:https://www.cplusplus.com/reference/list/list/remove/ //2.show(a), a是一般參考變數 show(int & a) //傳參考呼叫:call by reference int a = 5; cout<<"a = "<