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 5288KB
stdin
#include <iostream>
using namespace std;

int main() {
   int liczba = 6;
        cout << "Podaj liczbę: " << liczba << endl;
    cin >> liczba;
    
    if (liczba<5) {
    cout << "To za mało" << endl;
       }
    else if (liczba>10) {
    cout << "To za dużo" << endl;
        }
    else {
    cout << "Bingo!" << endl;
        }
    
        
return 0;
}
stdout
Podaj liczbę: 6
To za mało