1006 换个格式输出整数
Posted 开心果(¦3[▓▓]
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1006 换个格式输出整数相关的知识,希望对你有一定的参考价值。
水题。
#include"iostream" using namespace std; int main() { int n; cin>>n; int a = n/100;//百分位 int b = n%100/10;//十分位 int c = n%10;//个位 while(a--) cout<<"B"; while(b--) cout<<"S"; for(int i = 1; i <= c; ++i) cout<<i; return 0; }
以上是关于1006 换个格式输出整数的主要内容,如果未能解决你的问题,请参考以下文章