Untitled
unknown
c_cpp
a year ago
387 B
11
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