gpt4 book ai didi

c++ - VC++中的矩阵形式

转载 作者:行者123 更新时间:2023-11-28 03:53:02 24 4
gpt4 key购买 nike

我有一个包含矩阵元素的二维数组 我想在 VS2010 中编写基于对话框的项目时在编辑控件框上显示矩阵的内容但是我在按钮控件中添加的代码下面是一个s。

void CtestCstrDlg::OnBnClickedButton1()
{
CString strTest(" "), strB,strC;
// TODO: Add your control notification handler code here
for(int i=0;i<4;i++)
{
for(int j=0;j<4;j++)
{
strB.Format(L"%d ", j);
strTest+=strB;
}
strTest+="\n";
}
m_edDisp.SetWindowTextW(strTest);

}

但我发现在运行时,如果我点击按钮,它只会在一行中显示内容。如何得到像

这样的正方形
0 1 2 3
0 1 2 3
0 1 2 3
0 1 2 3

?请帮助我..

最佳答案

尝试将 strTest+="\n"; 替换为 strTest+="\r\n";。 Windows 使用回车符(ASCII 13,'\r')后跟换行符(ASCII 10,'\n')来指定新行。

关于c++ - VC++中的矩阵形式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4743895/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com