for(i=0;i<tot.GetSize();i++)//CStringArray tot;{if(_ttoi(tot[i])<1){tot.RemoveAt(i-1);tot.RemoveAt(i);//removeat会引起tot.getsize()变化吗?//i--能遍历tot吗?要加i--吗?}}我忘记把这句 tot.RemoveAt(i-1); 去掉了大家请忽略这句
2 回答
慕娘9325324
TA贡献1783条经验 获得超4个赞
//fish1
if(x1>-100)
x1=x1-7;
else
{ x1=950;
y1=rand()%500;}
//fish2
if(x2>-100)
x2=x2-6;
else
{x2=950;
y2=rand()%500;}
InvalidateRect (hwnd, NULL,true) ;
}
}
return 0;
}
富国沪深
TA贡献1790条经验 获得超9个赞
{return true;}
else
{return false;}
}
void InsFirst(T record)
{Node<T>*node=new Node<T>(record);
if(IsEmpty())
{_head=node;
_rear=node;
}
else
{node->Next=_head;_head=node;}
}
void InsLast(T record)
- 2 回答
- 0 关注
- 73 浏览
添加回答
举报
0/150
提交
取消