C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

C ++ STLのiswalnum()関数


C ++ STLのiswalnum()関数は、指定されたワイド文字が英数字(つまり、数字(0-9)、大文字(A-Z)、小文字(a-z)、または任意の英数字かどうか)であるかどうかをチェックします。

アルゴリズム

Begin
   Initializes the characters.
   Call function iswalnum(c1) to check whether it is alphanumeric or not.
   If it is alphanumeric character, then value will be returned otherwise zero will be returned.
End

サンプルコード

#include <cwctype>
#include <iostream>
using namespace std;
int main() {
   wchar_t c1 = '/';
   wchar_t c2 = 'a';
   if (iswalnum(c1))
      wcout << c1 << " is alphanumeric ";
   else
      wcout << c1 << " is not alphanumeric ";
      wcout << endl;
   if (iswalnum(c2))
      wcout << c2 << " is alphanumeric ";
   else
      wcout << c2 << " is not alphanumeric ";
   return 0;
}

出力

/ is not alphanumeric
a is alphanumeric

  1. C ++ STLのcosh()関数

    cosh()関数は、ラジアンで指定された角度の双曲線正弦を返します。これはC++STLに組み込まれている関数です。 cosh()関数の構文は次のとおりです。 cosh(var) 構文からわかるように、関数cosh()は、データ型float、double、またはlongdoubleのパラメーターvarを受け入れます。 varの双曲線コサインを返します。 C ++でcosh()を示すプログラムは次のとおりです- 例 #include <iostream> #include <cmath> using namespace std; int main() {  

  2. C ++ STLのsinh()関数

    sinh()関数は、ラジアンで指定された角度の双曲線正弦を返します。これはC++STLに組み込まれている関数です。 sinh()関数の構文は次のとおりです。 sinh(var) 構文からわかるように、関数sinh()は、データ型float、double、またはlongdoubleのパラメーターvarを受け入れます。 varの双曲線サインを返します。 C ++でsinh()を示すプログラムは次のとおりです。 例 #include <iostream> #include <cmath> using namespace std; int main() {