📅  最后修改于: 2020-09-25 07:03:14             🧑  作者: Mango
int isdigit(int ch);
isdigit()
函数检查ch
是否为数字,即0、1、2、3、4、5、6、7、8和9之一。
如果ch
的值不能表示为无符号字符或不等于EOF,则isdigit()
的行为未定义。
它在
ch
:要检查的字符 。
如果ch
是一个数字, isdigit()
函数将返回非零值,否则返回零。
#include
#include
#include
using namespace std;
int main()
{
char str[] = "hj;pq910js4";
cout << "The digit in the string are:" << endl;
for (int i=0; i
运行该程序时,输出为:
The digit in the string are:
9 1 0 4