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

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

时间:2020-06-25 10:06:03      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:names   stream   iostream   inf   return   alt   ++   整数   class   

技术图片

 

 

 1 #include<iostream>
 2 using namespace std;
 3 
 4 int main() {
 5     int n = 0;
 6     cin >> n;
 7     int b = n / 100;
 8     int s = n / 10 % 10;
 9     int g = n % 10;
10     if (b != 0) { for (int i = 0; i < b; i++)cout << "B"; }
11     if (s != 0) { for (int i = 0; i < s; i++)cout << "S"; }
12     if (g != 0) { for (int i = 0; i < g; i++)cout << i+1; }
13     return 0;
14 }

没看清题,没想到这么简单,以为n位数很多

技术图片

 

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

标签:names   stream   iostream   inf   return   alt   ++   整数   class   

原文地址:https://www.cnblogs.com/SCP-514/p/13190960.html

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