Untitled
unknown
c_cpp
23 days ago
387 B
4
Indexable
Never
#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