提交时间:2025-03-08 13:06:33
运行 ID: 311422
#include<bits/stdc++.h> using namespace std; int main(){ char ch[10]; for(int i=1; i<=5; i++){ cin>>ch[i]; } for(int i=1; i<=4; i++){ cout<<ch[i]; for(int j=1; j<=i; j++){ cout<<1; } } cout<<ch[5]; return 0; }