比赛 exam 评测结果 AAAWAAWAAA
题目名称 ISBN号码 最终得分 80
用户昵称 Marshmello 运行时间 0.002 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-07-03 20:01:29
显示代码纯文本
#include<bits/stdc++.h>
//语言1-出版社3-编号5-识别码1 
using namespace std;
int a;char b;int c;char d;int e;char f;int g;
struct num{
	int a;
	char b;
	int c;
	char d;
	int e;
	char f;
	int g;
};
int main(){
	freopen("isbn.in","r",stdin);
	freopen("isbn.out","w",stdout);
	scanf("%d%c%d%c%d%c%d",&a,&b,&c,&d,&e,&f,&g);
	int code=((a*1)+((c/100)*2)+(((c%100)/10)*3)+((c%10)*4)+((e/10000)*5)+(((e%10000)/1000)*6)+(((e%1000)/100)*7)+(((e%100)/10)*8)+(e%10)*9)%11;
	if(code==g&&code!=10)printf("Right");
	else if(code!=g&&code==10)printf("%d-%d-%d-X",a,c,e);
	else printf("%d-%d-%d-%d",a,c,e,code);
	
}