标签:for cout pause 水题 cin ring code ret i++
水题~。
int n;
int main()
{
cin>>n;
string res;
int t=n/100;
for(int i=0;i<t;i++) res+=‘B‘;
t=n%100/10;
for(int i=0;i<t;i++) res+=‘S‘;
t=n%100%10;
for(int i=0;i<t;i++) res+=‘1‘+i;
cout<<res<<endl;
//system("pause");
return 0;
}
标签:for cout pause 水题 cin ring code ret i++
原文地址:https://www.cnblogs.com/fxh0707/p/14399839.html