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

华为机试—字符串M化成以N为单位的段

时间:2015-01-04 01:19:40      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:华为

按要求分解字符串,输入两个数MNM代表输入的M个待处理的字符串,N代表输出的每串字符串要处理成的位数,不够补0

例如:

输入:2  8

          abc  123456789

输出:abc00000

          12345678,90000000

#include<iostream>
#include<string>
using namespace std;
string s;
string tmp;
int main(int argc, char *argv[])
{
    int m,n;
    int j;
    int i;
    int cnt=0;
    while(cin>>m>>n)
    {
        for(i=0;i<m;++i)
        {
            tmp="";
            cin>>s;
            cnt=0;//逗号的个数
            for(j=1;j<=s.size();++j){
                if(j%n==0){
                    tmp+=s[j-1];
                    tmp+=',';
                    cnt++;
                }
                else
                    tmp+=s[j-1];
            }
            int size=tmp.size();
            while(size<(cnt+1)*n+cnt){
                tmp+='0';
                size++;
            }
            cout<<tmp<<endl;
        }
    }
    return 0;
}



华为机试—字符串M化成以N为单位的段

标签:华为

原文地址:http://blog.csdn.net/wdkirchhoff/article/details/42366287

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