博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
6翻了
阅读量:4953 次
发布时间:2019-06-12

本文共 2497 字,大约阅读时间需要 8 分钟。

“666”是一种网络用语,大概是表示某人很厉害、我们很佩服的意思。最近又衍生出另一个数字“9”,意思是“6翻了”,实在太厉害的意思。如果你以为这就是厉害的最高境界,那就错啦 —— 目前的最高境界是数字“27”,因为这是 3 个 “9”!

本题就请你编写程序,将那些过时的、只会用一连串“6666……6”表达仰慕的句子,翻译成最新的高级表达。

输入格式:

输入在一行中给出一句话,即一个非空字符串,由不超过 1000 个英文字母、数字和空格组成,以回车结束。

输出格式:

从左到右扫描输入的句子:如果句子中有超过 3 个连续的 6,则将这串连续的 6 替换成 9;但如果有超过 9 个连续的 6,则将这串连续的 6 替换成 27。其他内容不受影响,原样输出。

输入样例:

it is so 666 really 6666 what else can I say 6666666666

输出样例:

it is so 666 really 9 what else can I say 27

 

第一次 13分

1 #include 
2 #include
3 #include
4 #include
5 6 using namespace std; 7 8 9 int main()10 {11 string str;12 int t=1;13 while(cin>>str)14 {15 if(str.find("6666666666")!=string::npos)16 {17 if(t)18 {19 cout<<"27";20 t=0;21 } 22 else cout<<" 27";23 }24 else if(str.find("6666")!=string::npos)25 {26 if(t)27 {28 cout<<"9";29 t=0;30 } 31 else cout<<" 9";32 }33 else 34 {35 if(t)36 {37 cout<

 

第二次 14分

1 #include 
2 #include
3 #include
4 #include
5 6 using namespace std; 7 8 9 int main()10 {11 string str;12 getline(cin,str);13 int i,g;14 int len=0;15 for(i=0;i<=str.size();i++)16 {17 if(str[i]=='6') len++;18 else 19 {20 if(len>9) 21 {22 if(str[i]) cout<<"27 ";23 else cout<<"27";24 }25 else if(len>3) 26 {27 if(str[i]) cout<<"9 ";28 else cout<<"9";29 }30 else 31 {32 for(g=0;g

 

第三次 15分............

1 #include 
2 #include
3 #include
4 #include
5 6 using namespace std; 7 8 9 int main()10 {11 string str;12 getline(cin,str);13 int i,g;14 int len=0;15 for(i=0;i<=str.size();i++)16 {17 if(str[i]=='6') len++;18 else 19 {20 if(len>9) 21 {22 if(str[i]) cout<<"27"<
3) 26 {27 if(str[i]) cout<<"9"<

 

转载于:https://www.cnblogs.com/jiamian/p/10646449.html

你可能感兴趣的文章
SQL2005 删除空白行null
查看>>
lightoj 1030 概率dp
查看>>
重新注册.NET
查看>>
Java 内存溢出(java.lang.OutOfMemoryError)的常见情况和处理方式总结
查看>>
Vagrant入门
查看>>
python and 我爱自然语言处理
查看>>
第3讲:导入表的定位和读取操作
查看>>
echarts-柱状图绘制
查看>>
mysql备份与恢复
查看>>
混沌分形之迭代函数系统(IFS)
查看>>
VS2013试用期结束后如何激活
查看>>
边框圆角Css
查看>>
SQL 能做什么?
查看>>
java IO操作:FileInputStream,FileOutputStream,FileReader,FileWriter实例
查看>>
使用Busybox制作根文件系统
查看>>
Ubuntu候选栏乱码
查看>>
基于SSH框架的在线考勤系统开发的质量属性
查看>>
jpg图片在IE6、IE7和IE8下不显示解决办法
查看>>
delphi之模糊找图
查看>>
莫比乌斯反演部分习题
查看>>