-1
set1:
printf("Name            : ");
gets (name);
if (isalpha(name)) {printf("\nSorry, input is invalid\n");
goto set1;}

これは私のコードの一部であり、name を char name [30] として宣言しました。しかし、タイプ *char のエラー引数はパラメーター タイプ int と互換性がないと表示されます.. ランダムにアルファベットと数字を一緒に入力したかどうかを検証する方法 (例: gghjhj88888)?

助けてくれてありがとう?

4

3 に答える 3

1
#include <stdio.h>
#include <string.h>
#include <ctype.h>

int isdigits(char *s){
    //return value : true if the string is all numbers.
    while(*s)
        if(!isdigit(*s++))
            return 0;
    return 1;
}

int main(void){
    char dateOfBirth[7];
    int len;
set4:
    printf("Date of Birth (DDMMYY)  : ");
    //Doesn't accept input more than specified number of characters
    fgets(dateOfBirth, sizeof(dateOfBirth), stdin);
    rewind(stdin);//keyborad buffer flush
    //fflush(stdin);//discard the character exceeding the amount of input
    //How fflush will work for stdin by the processing system (that is undefined)
    //while ('\n' != fgetc(stdin));//skip if over inputted
    len = strlen(dateOfBirth);
    if(dateOfBirth[len-1] == '\n') dateOfBirth[--len] = '\0';//newline drop
    if(len != 6 || !isdigits(dateOfBirth)){
        printf("\nSorry, input is invalid\n");
        goto set4;
    }

    return 0;
}
于 2013-05-09T22:27:04.400 に答える