求助!!!我是50分!!!

P1055 [NOIP2008 普及组] ISBN 号码

zhwandzyy @ 2023-04-27 22:04:42

#include<bits/stdc++.h>
using namespace std;
int main()
{
    char a[14];
    int b[14];
    for(int i=1;i<=13;i++)
    {
        cin>>a[i];
        b[i]=a[i]-48;
    }
    int sum=b[1]*1+b[3]*2+b[4]*3+b[5]*4+b[7]*5+b[8]*6+b[9]*7+b[10]*8+b[11]*9;
    if(sum%11==b[13])
    {
        cout<<"Right"; 
    }
    else
    {
        for(int i=1;i<=12;i++)
        {
            cout<<a[i];
        }
        cout<<sum%11;
    }
    return 0;
 } 

向诸位大佬求助!!!!


by sherry_lover @ 2023-04-27 22:40:09

@zhwandzyy 你的sum%11如果等于10则b[13] = X,10不等于X,当然过不了(需要特判)


by OSCARLUO @ 2023-05-02 21:47:03

#include <iostream>
#include <cstring>
using namespace std;
int main()
{
    char q[14],w;
    cin>>q;
    int h=0,k=0;
    for(int i=0;i<11;i++)
    {
        if(q[i]!='-')
        {
            k++;
            h+=k*(q[i]-'0');
        }
    }
    h%=11;
    if(h==10) w='X';
    else w=h+'0';
    if(w==q[12]) cout<<"Right"<<endl;
    else
    {
        q[12]=w;
        cout<<q;
    }
    return 0;
}

|