入门模拟——(字符串处理)B1006.换个格式输出整数
Posted JasonPeng1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了入门模拟——(字符串处理)B1006.换个格式输出整数相关的知识,希望对你有一定的参考价值。
#include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 100005; //const int MAX_D = 31; int main(){ int n; cin>>n; int Bdigit = n / 100; int Sdigit = (n / 10)%10; int Ddigit = n % 10; if(Bdigit != 0){ for(int i=0;i<Bdigit;++i){ cout<<\'B\'; } } if(Sdigit != 0){ for(int i = 0;i<Sdigit;++i){ cout<<\'S\'; } } if(Ddigit != 0){ for(int i=1;i<=Ddigit;++i){ if(i<=Ddigit){ cout<<i; } } } system("pause"); return 0; }
以上是关于入门模拟——(字符串处理)B1006.换个格式输出整数的主要内容,如果未能解决你的问题,请参考以下文章