C語言isdigit()函數:判斷一個字元是否為數位

2020-07-16 10:04:50
C語言 isdigit() 函數用來判斷一個字元是否是數位,也即 0~9。

標頭檔案:ctype.h

語法/原型:

int isdigit(int c);

引數 c 表示要檢測的字元或者 ASCII 碼。

返回值:返回值為非 0(真)表示 c 是數位,返回值為 0(假)表示 c 不是數位。

【範例】使用C語言 isdigit() 函數判斷使用者輸入的字串中有多少個數位。
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main()
{
    char str[50] = { 0 };
    int i, len, n=0;
    gets(str);
    for (i = 0, len = strlen(str); i < len; i++) {
        if (isdigit(str[i])) {
            n++;
        }
    }
    printf("There are %d numbers in strn", n);

    return 0;
}
執行結果:
we232sdji&^*2309d
There are 7 numbers in str