码迷,mamicode.com
首页 > 其他好文 > 详细

1006 换个格式输出整数 (15 分)

时间:2021-02-16 12:32:36      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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;
}

1006 换个格式输出整数 (15 分)

标签:for   cout   pause   水题   cin   ring   code   ret   i++   

原文地址:https://www.cnblogs.com/fxh0707/p/14399839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!