标签: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