All submissions

Check if the String Numeric or Alphabetic

Code

#include <stdio.h>
#include <stdint.h>

void classify_string(const char *str) {
    int alpha=0,digit=0,symbol=0,i=0;
    while(true){
        //printf("%d ",(int)*str);
        if(*str=='\0'){
            break;
        }
        else if((97<=(int)*str&&(int)*str<=122)||(65<=(int)*str&&(int)*str<=90)){
            alpha+=1;
        }
        else if(48<=(int)*str&&(int)*str<=57){
            digit+=1;
        }
        else{
            symbol+=1;
        }
        str++;
        i++;
    }
    if(digit==i){
        printf("NUMERIC");
    }
    else if(alpha==i){
        printf("ALPHABETIC");
    }
    else{
        printf("MIXED");
    }
}


int main() {
    char str[101];
    fgets(str, sizeof(str), stdin);

    // Remove newline
    uint8_t i = 0;
    while (str[i]) {
        if (str[i] == '\n') {
            str[i] = '\0';
            break;
        }
        i++;
    }

    classify_string(str);
    return 0;
}

Solving Approach

 

 

 

Loading...

Input

123456

Expected Output

NUMERIC