#include #include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ //function void show1(int a1[]); void show2(int * a1); void show3(string a1[]); void show4(string * a1); string * show5(string a1[]); string * show6(string * a1); int main(int argc, char** argv) { //1.整數陣列,傳遞陣列參數(1) int age1[] = {20,19,20,21}; show1(age1); //2.整數陣列,傳遞陣列參數(1) cout<