拼接方式1:(用strcat函数) a = 'abc'; b = 'def'; c = 'ghi' str = strcat(a,b, c) 输出结果:‘abcdefghi’ 拼接方式2:(用数组) a = 'abc'; b