10998qwert @ 2023-10-20 21:24:49
#include<bits/stdc++.h>
using namespace std;
int main()
{
string a;
cin>>a;
int j=1,t=0;
for(int i=0;i<14;i++)
{
if(a[i]!='-')
{
t+=a[i]*j++;
}
}
if(t%11==a[13])
cout<<"Right";
else
{
for(int i=0;i<=11;i++)
{
cout<<a[i];
}
cout<<t%11;
}
return 0;
}
by 76c6x @ 2023-11-22 20:03:53
不是有要求X吗,没处理X的情况