大写改小写
Posted paradis
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大写改小写相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
int main(){
char text[1000];
int len = 0;
gets(text);
for(int i = 0; i<strlen(text);i++){
if(text[i]<= ‘z‘ && text[i] >= ‘a‘){
text[i] -= 32;
}
cout<<text[i];
}
system("pause");
return 0;
}
以上是关于大写改小写的主要内容,如果未能解决你的问题,请参考以下文章