fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int liczba = 6;
  6. cout << "Podaj liczbę: " << liczba << endl;
  7. cin >> liczba;
  8.  
  9. if (liczba<5) {
  10. cout << "To za mało" << endl;
  11. }
  12. else if (liczba>10) {
  13. cout << "To za dużo" << endl;
  14. }
  15. else {
  16. cout << "Bingo!" << endl;
  17. }
  18.  
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
Podaj liczbę: 6
Bingo!