小写转变为大写函数toupper()
Posted miao-xixixi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小写转变为大写函数toupper()相关的知识,希望对你有一定的参考价值。
1.头文件
#include<cctype>
2.函数原型
int toupper(int c);
3.用法
#include<cstdio> #include<cctype> #include<iostream> using namespace std; int main(){ char a; cin>>a; cout<<char(toupper(a))<<endl; return 0; }
以上是关于小写转变为大写函数toupper()的主要内容,如果未能解决你的问题,请参考以下文章