fork download
  1. #include <iostream>
  2. using namespace std;
  3. /* esercizio sugli operratori lohici &&,||, !
  4. dato di input un valore vericare se:
  5. 1) è compreso tra 10 e 20 ma è diverso da 15*/
  6. int x;
  7. int main() {
  8. cin>>x;
  9. if ( (x>=10) && (x<=20) && (x!=15)) {cout <<"accetto il valore"<<endl;}
  10. else { cout <<"non accetto il valore" <<endl;}
  11.  
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 5284KB
stdin
15
stdout
non accetto il valore