随机坐标中的Cout向量n次

时间:2015-04-22 13:12:37

标签: c++ vector cout

我试图在随机坐标的环路中对一个矢量进行12次cout。我在这里创建了我的矢量:

vector<Item> sV(MAXPILLS, pill);

目前它只打印出一个向量。这是我的矢量随机坐标的代码,并尝试打印出它们中的12个。如果你可以提供帮助,我会对它进行宣传!

    void generatePowerPills(char gr[][SIZEX], Item pill){
    for (int i = 0; i < 12; i++)
    {
        gr[pill.y][pill.x] = pill.symbol;
    }
}
void initialiseRandomPillsCoordinates(vector<Item>& sV) {
    //pass the vector to the function to give each pill random coordinates
    Seed();
    for (size_t i(0); i < sV.size(); ++i)
    {
        sV.at(i).y = Random(SIZEY - 2);    //vertical coordinate in range [1..(SIZEY - 2)]
        sV.at(i).x = Random(SIZEX - 2);    //horizontal coordinate in range [1..(SIZEX - 2)]
    }
}

1 个答案:

答案 0 :(得分:0)

我只是评论,但遗憾的是我只能回答。无论如何,你在这里迭代:

 for (int i = 0; i < 12; i++)
{
    gr[pill.y][pill.x] = pill.symbol;
}

但你在这个循环中在哪里使用“i”?它似乎会做同样的,12次。除非内部有某些隐藏的功能,如果是这样的话,请对我感到羞耻。