English statement. You must submit your code at the Chinese version of the statement.
题目描述
你的 QQ 收到了一条新消息!但是你很生气,因为你看不到别人在手机 QQ 上发送的超级表情。
消息形如一个字符串 S,包含且仅包含一个超级表情。具体地,我们将 S 的拼音采用驼峰命名法,可以化为如下形式的消息:
[AaaBbbCcc......]]QingShiYongZuiXinBanShouJiQQTiYanXinGongNeng
也就是说,将 [ ]]请使用最新版手机QQ体验新功能[w]]请使用最新版手机QQ体验新功能 中的每个汉字替换为其拼音,其中 w 为 实际中文名称,保证其包含 ≥1 个音节。
为了在电脑上也能发出这个表情,你需要键入一个正斜杠(/)加它的 拼音缩写。例如 [TaiYang]]QingShiYongZuiXinBanShouJiQQTiYanXinGongNeng
的拼音缩写为 /ty/ty,[YueLiang]]QingShiYongZuiXinBanShouJiQQTiYanXinGongNeng
的拼音缩写为 /yl/yl。更具体地,表情 w 的 拼音缩写 即为 w 的 实际中文名称 中,每个拼音音节的首字母转为小写后拼接的结果。
最终请你输出在电脑端表示发送这个表情的字符串。请注意:这个字符串可能在 QQ 中实际上不能表示这个表情,例如 NiZhenBangBang
(一个超级 QQ 表情) 不能在 QQ 中用 /nzbb/nzbb 来打出,但是在本题中,我们认为其是合法的。
输入格式
输入仅一行:一个字符串 S。
输出格式
输出一行一个字符串,表示答案。
输入输出样例
输入 #1
[TaiYang]]QingShiYongZuiXinBanShouJiQQTiYanXinGongNeng
输出 #1
/ty
输入 #2
[LiuLei]]QingShiYongZuiXinBanShouJiQQTiYanXinGongNeng
输出 #2
/ll
说明/提示
本题采用捆绑测试。
对于 100%100% 的数据,保证给出的字符串 S 满足题目中所写的 [AaaBbbCcc......]]QingShiYongZuiXinBanShouJiQQTiYanXinGongNeng
的格式,且保证 ∣S∣≤100∣S∣≤100;给出的 S 描述一个真实存在的 QQ 超级表情。
题解:
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
string s;
cin>>s;
int x=s.find("[");
int y=s.find("]]");
cout<<'/';
for(int i=x+1; i<y; i++)
{
if(isupper(s[i])) s[i]=tolower(s[i]),cout<<s[i];
}
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
string s;
cin>>s;
int x=s.find("[");
int y=s.find("]]");
cout<<'/';
for(int i=x+1; i<y; i++)
{
if(isupper(s[i])) s[i]=tolower(s[i]),cout<<s[i];
}
return 0;
}