void CMyDlg::OnButton1()
{
int x=3;
int y=5;
int arr[3][5];
CString str,tmp;
//赋值
for(int i=0;i
for(int j=0;j
arr[i][j]=i*j;
}
}
//显示
tmp=str="";
for(i=0;i
for(int j=0;j
tmp.Format(" %d ",arr[i][j]);
str+=tmp;
}
str+="\n\r";
}
MessageBox(str);
//显示结果
// 0 0 0 0 0
// 0 1 2 3 4
// 0 2 4 6 8
}
换行输出