恭喜,你发布的帖子
发布于 2016-08-01 11:46:52
7楼
你这个貌似用循环就可以解决
float data[100][10];
int count = 0;//记录条数
移动数据
for(int row = 0; row != count; ++i)
{
for(int j = 0; j != 10; ++j)
{
row[i][j] = row[i + 1][j];
}
}
count++;
row[0][0] == GetTag("1");
.
.. row[0, 9] = GetTag("9");
2.数据填充Io阵列
char s[100] = "";
for(int i = 0; i != count; ++i)
{
for(int j =0; j != 10; ++j)
{
sprintf(s, "a%02d%02d", i, j);
SetTagFloat(s, data[i][j]);
}
}
精华帖版主置评:思路不错
请填写推广理由:
分享
只看
楼主