填空题

阅读下列程序 Option Base 1 Private Sub Form_Click() Dim x(3,3) For j=1 to 3 For k=1 to 3 If j=k then x (j,k)=1 If j<>k then x(j,k)=k Next k Next j Call fun(x()) End Sub Private Sub fun(x()) For j=1 to 3 Fork-1 to 3 Print x(j,k) Next k Next j End Sub 运行程序时,输出结果为 【13】

【参考答案】

1 2 3 1 1 3 1 2 1