c++函数中调用vc++_C ++中的iswupper()函数

c++函数中调用vc++

The iswupper() function is defined in the header file <cwctype.h>.

iswupper()函数在头文件<cwctype.h>中定义。

Prototype:

原型:

    int iswupper(wchar_t rs);

Parameter:

参数:

wchar_t rs – Checks the given character is in upper case or not.

wchar_t rs –检查给定字符是否为大写。

Return type:

返回类型:

The function returns two values:

该函数返回两个值:

  1. Zero: if rs is non - uppercase character.

    零:如果rs为非大写字符。

  2. Non Zero: if rs is uppercase character.

    非零:如果rs是大写字符。

Use of function

使用功能

The iswupper() is built-in function in C++, which is used to check the given character, rs is in uppercase or not .

iswupper()是C ++中的内置函数,用于检查给定字符, rs是否为大写。

Program 1:

程序1:

#include <cwctype> 
#include <iostream> 
using namespace std; 

int main() {   
	wchar_t rs1 = 'H'; 
	wchar_t rs2 = 'e'; 
	wchar_t rs3 = 'l';
	wchar_t rs4 = 'P';

	// Function to check if the character 
	// is a uppercase character or not 
	if (iswupper(rs1)) 
		wcout << rs1 << " is a uppercase "; 
	else
		wcout << rs1 << " is not a uppercase "; 
	wcout << endl; 

	if (iswupper(rs2)) 
		wcout << rs2 << " is a uppercase "; 
	else
		wcout << rs2 << " is not a uppercase "; 
	wcout << endl; 
	
	if (iswupper(rs3)) 
		wcout << rs3 << " is a uppercase "; 
	else
		wcout << rs3 << " is not a uppercase  "; 
	wcout << endl; 
	
	if (iswupper(rs4)) 
		wcout << rs4 << " is a uppercase  "; 
	else
		wcout << rs4 << " is not a uppercase  "; 
	wcout << endl; 

	return 0; 
}

Output

输出量

H is a uppercase 
e is not a uppercase 
l is not a uppercase  
P is a uppercase  


Program 2:

程式2:

#include <cwctype> 
#include <iostream> 
using namespace std; 

int main() {   
	wchar_t rs1 = '.'; 
	wchar_t rs2 = 'C'; 
	wchar_t rs3 = '@';
	wchar_t rs4 = 'M';

	// Function to check if the character 
	// is a uppercase character or not 
	if (iswupper(rs1)) 
		wcout << rs1 << " is a uppercase "; 
	else
		wcout << rs1 << " is not a uppercase "; 
	wcout << endl; 

	if (iswupper(rs2)) 
		wcout << rs2 << " is a uppercase "; 
	else
		wcout << rs2 << " is not a uppercase "; 
	wcout << endl; 
	
	if (iswupper(rs3)) 
		wcout << rs3 << " is a uppercase "; 
	else
		wcout << rs3 << " is not a uppercase  "; 
	wcout << endl; 
	
	if (iswupper(rs4)) 
		wcout << rs4 << " is a uppercase  "; 
	else
		wcout << rs4 << " is not a uppercase  "; 
	wcout << endl; 

	return 0; 
}

Output

输出量

. is not a uppercase 
C is a uppercase 
@ is not a uppercase  
M is a uppercase  


翻译自: https://www.includehelp.com/cpp-programs/iswupper-function.aspx

c++函数中调用vc++

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值