码迷,mamicode.com
首页 > 其他好文 > 详细

大写改小写

时间:2018-09-16 15:46:30      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:ret   har   pause   using   char   sys   main   stream   include   

#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;
}

大写改小写

标签:ret   har   pause   using   char   sys   main   stream   include   

原文地址:https://www.cnblogs.com/paradis/p/9655484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!