LINUX.ORG.RU

История изменений

Исправление invy, (текущая версия) :

#include "plane.hpp"
int main(int argc, char* argv[])
{
    Plane
 player(0);

    for(const auto bodyx& : player.bodyx)
    {
        cout << bodyx << " ";
    }
    cout << endl;
}

Исходная версия invy, :

#include "plane.hpp"
int main(int argc, char* args[])
{
    Plane
 player(0);

    for(const auto bodyx& : player.bodyx)
    {
        cout << bodyx << " ";
    }
    cout << endl;
}