#include <stdio.h>
#include <wctype.h>
int main ()
{
    int i=0;
    wchar_t str[] = L"C++";
    while (str[i])
    {
        if (iswalpha(str[i])){
            printf("character %lc is alphabetic\n",str[i]);
        }
        else{
            printf("character %lc is not alphabetic\n",str[i]);
        }
        i++;
    }
    return 0;
}

输出

character C is alphabetic
character + is not alphabetic
character + is not alphabetic

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
  • 2021-06-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-05-31
  • 2021-07-03
  • 2021-08-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案