Exemple #1
0
int main()
{
    Something cFirst;
    Something cSecond;
    Something cThird;
   
    std::cout << cFirst.GetID() << std::endl;
    std::cout << cSecond.GetID() << std::endl;
    std::cout << cThird.GetID() << std::endl;
    return 0;
}
Exemple #2
0
int main()
{
    Something cFirst;
    Something cSecond;
    Something cThird;

    using namespace std;
    cout << cFirst.GetID() << endl;
    cout << cSecond.GetID() << endl;
    cout << cThird.GetID() << endl;
    return 0;
}