如果是十進位數字,傳回非零值,否則為零。
#include <iostream>
#include <string>
using namespace std;
//-----------------------
int main()
{
char ch = 'a' ;
int num = 50 ;
cout << isdigit(ch) << endl ;
cout << isdigit(num) << endl ;
system("pause");
return 0;
}
執行結果
全站熱搜