當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ iswdigit()用法及代碼示例


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 <cwctype> 
#include <iostream> 
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 <cwctype> 
#include <iostream> 
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


相關用法


注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 iswdigit() function in C/C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。