标签:string 包含 clu col span 英文 cstring out inpu
#include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <vector> #include <cmath> #include <queue> #include <deque> #include <cmath> #include <map> using namespace std; typedef long long ll; const double inf=1e20; const int maxn=2e5+10; const int mod=1e9+7; char a[maxn]; int main(){ while(gets(a)){ int len=strlen(a); for(int i=1;i<len;i++){ if(a[i]<=‘z‘&&a[i]>=‘a‘&&a[i-1]==‘ ‘){ a[i]-=‘a‘; a[i]+=‘A‘; } } if(a[0]<=‘z‘&&a[0]>=‘a‘){ a[0]-=‘a‘; a[0]+=‘A‘; } puts(a); } return 0; }
标签:string 包含 clu col span 英文 cstring out inpu
原文地址:https://www.cnblogs.com/wz-archer/p/12442738.html