解题思路
最开始想着每个单词每个单词的分析,后来发现有两个测试点没过,认真想了一下,可能测试数据不一定是单词的格式,也有可能是一个不含空格的长单词,单词内同样包含6,这样我原来的代码就没办法统计了。
改变思路之后重新写代码,需要使用C++中的按行读入,getline(cin,str)。
需要注意的地方:
1.可能是以6结尾的,但是样例给的很好,如果你没考虑到的话,样例肯定过不了。
2.超过是大于,一定要细心。
#include<iostream>
#include<string>
using namespace std;
int main(){
string str;
int ans=0;
getline(cin,str);
for(int i=0;i<str.length();i++){
if(str[i]!='6'){
if(ans<=3){
for(int j=0;j<ans;j++) cout<<"6";
}else if(ans>3&&ans<=9){
cout<<"9";
}else{
cout<<"27";
}
ans=0;
cout<<str[i];
}
else ans++; //为6时先不输出,先统计连续6个个数
}
if(ans>0){ //以6结尾
if(ans<=3){
for(int j=0;j<ans;j++) cout<<"6";
}else if(ans>3&&ans<=9){
cout<<"9";
}else{
cout<<"27";
}
}
return 0;
}