Untitled

Anonymous
c_cpp
08/21/2024 4:26 PM
516 B
22
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;
}
Editor is loading...
Leave a Comment