#include #include void main() { /* == != > < >= <= && || */ int i; scanf("%d",&i); if( i == 1 ){ printf("i is equal to 1.\n"); } else if( (i > 1) && (i <= 5) ){ printf("i is greater than 1 and less than or equal to 5.\n"); } else{ printf("i is less than 1 or greater than 5.\n"); } }