MFC里面的列表框怎样输出int的数据

2024-12-01 18:49:15
推荐回答(1个)
回答1:

nt a[5];
CString str;
for(i=0;i<5;i++)
{
str.Format("%d", a[i]);
m_list.AddString(str);
}