iswdigit()是C++ STL中的内置函数,该函数检查给定的宽字符是否为十进制数字字符。它在C++的cwctype头文件中定义。从0到9的字符(即0、1、2、3、4、5、6、7、8、9)被分类为十进制数字。
语法:
int iswdigit(ch)
参数:该函数接受单个强制性参数ch ,该参数指定宽字符,我们必须检查该宽字符是否为数字。
返回值:该函数返回两个值,如下所示。
- 如果ch是数字,则返回非零值。
- 如果不是,则返回0。
下面的程序说明了上述函数。
程序1 :
// C++ program to illustrate
// iswdigit() function
#include
#include
using namespace std;
int main()
{
wchar_t ch1 = '?';
wchar_t ch2 = '3';
// Function to check if the character
// is a digit or not
if (iswdigit(ch1))
wcout << ch1 << " is a digit ";
else
wcout << ch1 << " is not a digit ";
wcout << endl;
if (iswdigit(ch2))
wcout << ch2 << " is a digit ";
else
wcout << ch2 << " is not a digit ";
return 0;
}
输出:
? is not a digit
3 is a digit
程序2 :
// C++ program to illustrate
// iswdigit() function
#include
#include
using namespace std;
int main()
{
wchar_t ch1 = '1';
wchar_t ch2 = 'q';
// Function to check if the character
// is a digit or not
if (iswdigit(ch1))
wcout << ch1 << " is a digit ";
else
wcout << ch1 << " is not a digit ";
wcout << endl;
if (iswdigit(ch2))
wcout << ch2 << " is a digit ";
else
wcout << ch2 << " is not a digit ";
return 0;
}
输出:
1 is a digit
q is not a digit
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。