文章
93
粉丝
56
获赞
263
访问
20.4k
#include <bits/stdc++.h>
using namespace std;
int num[800];
int main()
{
string str;
while(getline(cin,str))
{
memset(num,0,sizeof(num));
int a=str.size();
for(int i=0;i<a;i++)
{
if(isupper(str[i]))
{
num[i]=1;
str[i]=tolower(str[i]);
}
}
for(int i=0;i<a;i++)
{
&n...
登录后发布评论
暂无评论,来抢沙发