加一个for循环 a=[1 2 3 4 5 ];b=[5 4 3 2 1];c=[0 0 0 0 0];fp=fopen('tt1.txt','wt');for i=1:5;fprintf(fp,'%d %d %d \n',a(i),b(i),c(i));end fclose(fp);