c++ 字串

來源:互聯網
上載者:User

標籤:c++   const   sum   int   str   關係   git   pass   字串   

/*

一個合法的社會安全號碼碼由17位地區、日期編號和順序編號加1位校正碼組成。校正碼的計算規則如下:

首先對前17位元字加權求和,權重分配為:{7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};然後將計算的和對11模數得

到值Z;最後按照以下關係對應Z值與校正碼M的值:

Z:0 1 2 3 4 5 6 7 8 9 10

M:1 0 X 9 8 7 6 5 4 3 2

現在給定一些社會安全號碼碼,請你驗證校正碼的有效性,並輸出有問題的號碼。

輸入描述:

輸入第一行給出正整數N(<= 100)是輸入的社會安全號碼碼的個數。隨後N行,每行給出1個18位社會安全號碼碼。

輸出描述:

按照輸入的順序每行輸出1個有問題的社會安全號碼碼。這裡並不檢驗前17位是否合理,只檢查前17位是否全為數字且最後1位校正碼計算準確。如果所有號碼都正常,

則輸出“All passed”。

解題思路:分割字串


輸入例子:

4

320124198808240056

12010X198901011234

110108196711301866

37070419881216001X
*/
#include <iostream>
#include <cctype>
#include <string>
#include <vector>
#include <cstdlib>
#include <algorithm>
using namespace std;
int quan[17]={7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};
char mo[11]={‘1‘,‘0‘,‘x‘,‘9‘,‘8‘,‘7‘,‘6‘,‘5‘,‘4‘,‘3‘,‘2‘};
bool isdigit_str(const string str){
    int count=0;
    for(int i=0;i<str.length();i++){
        if(isdigit(str[i])) count++;
    }
    if(count==str.length())return true;
    else return false;
}
char qu_mo(const string str){
    int sum=0;
    for(int i=0;i<str.length();i++){
        int temp = str[i]-‘0‘;
        sum+=temp*quan[i];
    }
    sum=sum%11;
    return mo[sum];
}
int main()
{
    int N;
    int count=0;
    cin>>N;
    vector<string> res;
    for(int i=0;i<N;i++){
        string str;
        cin>>str;
        string str2=str.substr(0,17);
        if(isdigit_str(str2)){
            if(qu_mo(str2)==str[17]) count++;
            else res.push_back(str);
        }else res.push_back(str);
    }
    if(count==N)cout<<"All passed"<<endl;
    else for(vector<string>::iterator it=res.begin();it!=res.end();it++){
            cout<<*it<<endl;
    }
    return 0;
}

c++ 字串

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.