#include <stdio.h>
int main(void) {
char c;
c = '
';
if ('0' <= c && c <= '9') {
printf("条件1\n");
} else if ('a' <= c && c <= 'z') {
printf("条件1ではなく、条件2\n");
} else if ('A' <= c && c <= 'Z') {
printf("条件1でも条件2でもなく、条件3\n");
} else {
printf("条件1でも条件2でも条件3でもない\n");
}
return 0;
}