#25155: 到底哪裡出錯啊!!!


conanhuang8382 (conan)

學校 : 慧燈中學
編號 : 145576
來源 : [59.124.158.45]
最後登入時間 :
2021-11-05 12:20:23
a020. 身分證檢驗 | From: [114.136.62.94] | 發表日期 : 2021-04-24 18:06

#include <bits/stdc++.h>

using namespace std;

 

int main(){

string id;

int total;

char array[26]{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L','M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'X', 'Y', 'W', 'Z', 'I', 'O'};

cin >> id;

for (int i = 0; i <= 25; i++){

if (id[0] == array[i]){

total = 9 * ((i + 10) % 10) + (i + 10) / 10;

break;

}

}

for (int i = 1; i <= 8; i++){

total = int(id[i]) * (9 - i) + total; 

}

total = int(id[9]) + total;

cout << total << endl;

if (total % 10 == 0){

cout << "real";

}

else{

cout << "fake";

}

 
ZeroJudge Forum