求助(跪)

P1055 [NOIP2008 普及组] ISBN 号码

Daaaaaaazai @ 2022-07-22 18:52:22


#include <iostream>
#include <cstdio>
using namespace std;

int main(){
    char a,b,c,d,e,f,g,h,i,j;
    int check;
    scanf("%c-%c%c%c-%c%c%c%c%c-%c",&a,&b,&c,&d,&e,&f,&g,&h,&i,&j);
    check=(a-'0')*1+(b-'0')*2+(c-'0')*3+(d-'0')*4+(e-'0')*5+(f-'0')*6+(g-'0')*7+(h-'0')*8+(i-'0')*9;
    check%=11;
    if(j=='x'&&check==10||check==j-'0')
        printf("Right\n");
    else
        printf("%c-%c%c%c-%c%c%c%c%c-%c",a,b,c,d,e,f,g,h,i,check==10?'x':check+'0');
    return 0;
} 

by bmqt @ 2022-07-22 19:14:57


by bmqt @ 2022-07-22 19:20:46

显然


by bmqt @ 2022-07-22 19:21:38

把x改为大写X,即可


by bmqt @ 2022-07-22 19:21:56

下次细心点


|