标签:exp 字符串 cin 9.png blank img 规则 2-2 desc
输入数据有多行,每一行是一个输入过程中的身份证号
分组后的字符串
5021 502104198803 5021041988033084 502104198803308324
5021 502104 198803 502104 19880330 84 502104 19880330 8324
#include <iostream>
#include <stdio.h>
#include <math.h>
#include <iomanip> //不能写成#include <iomanip.h>
#include <string.h>
using namespace std;
int main()
{
string str;
int cnt=0;
while(getline(cin,str)) //用于循环输入字符串
{
for(int i=0;i<str.size();i++)
{
if(str[i]!=‘ ‘) //分离每一行的字符串
{
cout<<str[cnt];
cnt++;
if(cnt==6||cnt==14)
cout<<" ";
}
}
cnt=0; //清零
cout<<endl;
}
return 0;
}
标签:exp 字符串 cin 9.png blank img 规则 2-2 desc
原文地址:http://www.cnblogs.com/panlangen/p/7781115.html