Untitled

mail@pastecode.io avatar
unknown
c_cpp
5 months ago
387 B
4
Indexable
#include <iostream>

using namespace std;

int main()
{
    int x = 5;

    // coś się stało

    x = 19;

    if( x > 20 )
    {
        cout << "Wygrales!" << endl;
    }
    else if( x == 20 )
    {
        cout << "Wow dokladnie 20 punktow!" << endl;
    }
    else
    {
        cout << "Brak Ci jeszcze kilku punktow!" << endl;
    }

    return 0;
}
Leave a Comment