赞
踩
H3el5o2
HHHellllloo
#include <iostream> using namespace std; int main() { string n; cin>>n; getchar(); for (int i = 0;i < n.length();i++){ if (n[i] >= '1' && n[i] <= '9'){ int num = (int)n[i] - 48; char temp = n[i-1]; for(int j = 2;j <= num;j++){ cout<<temp; } } else cout<<n[i]; } return 0; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。