Guest User

Untitled

a guest
Jul 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <stdio.h> // 799720
  2. #include <conio.h>
  3.  
  4. main(){
  5. int x = 0;
  6. if(x>10){
  7. if(x<20){
  8. printf(" It is between 10 and 20 \n");
  9. }
  10. else{
  11. printf(" It is bigger than 19 \n");
  12. }
  13. }
  14. else if(x<10){
  15. if( x > 1){
  16. printf(" It is between 1 and 10 ");
  17. }
  18. else{
  19. printf(" Negative or 0 ");
  20. }
  21. }
  22. while(!kbhit()){}
  23. }
Add Comment
Please, Sign In to add comment